question610
New Member
- Joined
- Jul 3, 2017
- Messages
- 29
How do i get the cells for the header row with blanks? There are some blanks in between columns but I want to grab the blanks as well...The thing is I don't want to grab the trailing blanks at the end.
I have this
So...
Col:
A B C D E F G H I J K
1 <blank> 3 2 <blank> 5
I want it to get A-F and ignore G on...
I have this
Code:
Set HeaderRange = Dataws.Rows(HeaderRow).SpecialCells(xlCellTypeConstants)
So...
Col:
A B C D E F G H I J K
1 <blank> 3 2 <blank> 5
I want it to get A-F and ignore G on...