Paste Blank Cells as Values creating active cells

MarkRCC

New Member
Joined
May 22, 2017
Messages
46
Hi All,

I have an array formula on one sheet that is populating a list of results which I am using VBA to copy and place into a specific position by copying the entire named range the array is in.

The problem I am having is that when I Paste as Values, the blank cells that contained the formula in the first sheet are not being detected as blank cells on the second sheet. I have tried using Go To Special (Blanks) on the region and it says there are no blanks found. When highlighting the blanks cells there is a cell Count in the bottom corner, where normally that does not appear when selecting a blank range.

I realise that the issue must have something to do with using Paste as Values, but I do not know how to get around this issue.

Cheers
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
Q1 Are the original cells truly blank or do they contain a formula which returns "" (or some other invisible character)
- cells containing formula are not blank or empty

Q2 What are you wanting to do to the pasted "blank" cells after finding them?
 
Last edited:
Upvote 0
Try
Code:
Myrange.Value=Myrange.Value
Replacing MyRange with the actual range.
This needs to be done after the copy/paste
 
Upvote 0

Forum statistics

Threads
1,213,550
Messages
6,114,265
Members
448,558
Latest member
aivin

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top