Hello everybody,
I'm trying to make some kind of database, and for it I'm preparing userforms. I have a problem in creating a userform that enters the new data in the first available row, but with ignoring the first column. The data in the first column is created by joining data in other columns, and the column itself is not empty by default, and is used in that way because I need it for VLOOKUP formula.
So, I'm practically a beginner in VBA and I used code I found online that I used until now, so this is the code, and I need instructions on how to adjust the code to ignore first column, and start from the 2nd:
Code
'find first empty row in database
iRow = ws.Cells.Find(What:="*", SearchOrder:=xlRows, _
SearchDirection:=xlPrevious, LookIn:=xlValues).Row + 1
Thank you in advance,
Bojan