Sotirios has attended:
Excel VBA Intro Intermediate course
VBA
if you are using an input box to capture data how do you reference the entry to the next available cell available in a worksheet.
RE: VBA
Hi Sotirios
Thank you for your question
I am assuming that you have a list and you wish to find the next blank row. Assuming that cell A1 is within the list then the following will allow you to identify the last row.
intVariable = range("A1").currentregion. rows.count+1
You can then reference that row/cell with
cells(intvariable,1) = value
Hope this is useful
regards
Stephen