Have a range of A10:B20 as an example. Am looking for code that will choose the next blank cell in this range. Would like to have this run vertically. i.e. Start looking in A10, then A11, A12 etc until A20, then to B10, B11....
This works for simple 1 column situation....
Range("A" & Cells(Rows.Count, "A").End(xlUp).Row + 1).Select
Your ideas appreciated
This works for simple 1 column situation....
Range("A" & Cells(Rows.Count, "A").End(xlUp).Row + 1).Select
Your ideas appreciated