View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Bob Phillips[_6_] Bob Phillips[_6_] is offline
external usenet poster
 
Posts: 11,272
Default how do i make a macro that will select all those cells that are empty

ActiveSheet.UsedRange.SpecialCells(xlCellTypeBlank s).Select


--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)

"VB Script for Excel" wrote in message
oups.com...
I need to make macro that will select only those cells that have no
values in it. How do i do that?

For example: lets say the excel sheet has values in B4 and A9 and A22.
How would i make a macro that will select all other cells except those
three cells above.?


Regrds