S
serge
Hi,
I'm using a macro to find the first empty cell in a column. For this
use the code:
Range("a65536").End(xlUp).Offset(1, 0).Activate
Then I put a value in the active cell
And after it the value should disappear in the cell F3. For this I us
the code:
Range("F3").Value = Sheets("blad1").Range("a65536").End(xlUp).Value
Now I want to put this in 1 macro. Between my first code and my las
code, it should wait for a valid input and an enter before it continue
with the last code.
How can I do this
I'm using a macro to find the first empty cell in a column. For this
use the code:
Range("a65536").End(xlUp).Offset(1, 0).Activate
Then I put a value in the active cell
And after it the value should disappear in the cell F3. For this I us
the code:
Range("F3").Value = Sheets("blad1").Range("a65536").End(xlUp).Value
Now I want to put this in 1 macro. Between my first code and my las
code, it should wait for a valid input and an enter before it continue
with the last code.
How can I do this