seriousnick
New Member
- Joined
- Nov 4, 2011
- Messages
- 16
Hi
I have "iferror" lookup formulas (formulae?
) in 31 columns and down 25,000 rows. (IFERROR then return "")
I then copy and paste as values.
I then eventually move all results (1 per row) to the lefthand column of the 31.
I use special cells for efficiency (goto special>blanks, then delete shift left). However, as I have pasted as values, the cells are not actually "blank" (null?) as I have to run VBA code first:
Although this does the job, because it loops through 775,000 cells it takes a while.
Is there a better way to do this either from the iferror part of the lookup, or from copy/paste as values or even the VBA?
Many thanks for any help.
Nick
I have "iferror" lookup formulas (formulae?
I then copy and paste as values.
I then eventually move all results (1 per row) to the lefthand column of the 31.
I use special cells for efficiency (goto special>blanks, then delete shift left). However, as I have pasted as values, the cells are not actually "blank" (null?) as I have to run VBA code first:
Code:
If cell = "" Then cell.ClearContents
Is there a better way to do this either from the iferror part of the lookup, or from copy/paste as values or even the VBA?
Many thanks for any help.
Nick