Hi again
So as part of this seemingly never-ending project, there is a section of code which needs to find the last column before a blank column.
So currently I am using some slightly modified code I found on google, but rather than give just the column address it gives the address of the 1st cell in the column
heres the code:
So if Column I is blank then col = J1
What should I change so that col just equals J
Thanks
So as part of this seemingly never-ending project, there is a section of code which needs to find the last column before a blank column.
So currently I am using some slightly modified code I found on google, but rather than give just the column address it gives the address of the 1st cell in the column
heres the code:
Code:
col = Columns(1).End(xlToRight).Address
So if Column I is blank then col = J1
What should I change so that col just equals J
Thanks