To find the nect blank cell in column A I use the code
Code:
Sub Find_Next_Row()
i = Range("A65536").End(xlUp).Row
Range("A" & i).Offset(1, 0).Select
End Sub
Is there code like this I can use to find the next blank column in row 1
It's not generally necessary to select cells in order to work with them, so you may not need to Select them at all, but to answer your question, something like this: