View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
sub_pop[_2_] sub_pop[_2_] is offline
external usenet poster
 
Posts: 1
Default Excel VBA - Type mismatch during While

Thanks Tom,
Unfortunately, even when the result - #N/A, condition is met and th
copy and paste take place. Is there an ActiveCell.Result?

Thanks,
Marc


Tom Ogilvy wrote[/i]
*While ActiveCell.Text < "#N/A"
ActiveCell.Offset(0, -3).Select
ActiveCell.Copy
ActiveCell.Offset(0, 4).Select
ActiveCell.PasteSpecial
ActiveCell.Offset(1, -1).Select
Wend

--
Regards,
Tom Ogilvy

"sub_pop " wrote in message
...
On a worksheet with 4 columns and ~300 rows, where the 4th column i

the
same formula in each row, returning a value for the first ~10-20, I
want to paste the contents of the 1st column into the 5th column o

the
same row, so long as the result of the formula in column 4 is not
"#N/A"

What I have looks like this:
While ActiveCell < "#N/A"
ActiveCell.Offset(0, -3).Select
ActiveCell.Copy
ActiveCell.Offset(0, 4).Select
ActiveCell.PasteSpecial
ActiveCell.Offset(1, -1).Select
Wend

This works well for adding the 5th column, but errors out as a Type
Mismatch when it reaches the first row where the result in column

is
#N/A. Any help is greatly appreciated


---
Message posted from http://www.ExcelForum.com/


--
Message posted from http://www.ExcelForum.com