excel noob needs help!

ogg13

Registered User.
Local time
Today, 04:50
Joined
Jan 30, 2007
Messages
49
Is there a cell range option that basically equates to 'all data in the worksheet that isnt blank'?

IE instead of A1:N7, is there something that states "all populated cells:all populated cells"?
 
Hello ogg13!

You can use VBA
Sub PopulatedCells()
ActiveSheet.UsedRange.Select
'here is what you want to do with your
'current selection
End Sub
 
Im actually importing the data from access, so im not sure if that command would work, but its a start, so thank you 8)
 

Users who are viewing this thread

Back
Top Bottom