D
dodong
I have created a userform in excel VBA use as a data entry form and I
have created this VBA code:
iRow = ws.Cells(Rows.Count, 3).End(xlUp).Offset(1, 0).Row
ws.Cells(iRow, 3) = TextBox1.Value
My problem is how to set this code to start the data from row 10 and
column 3, because currently it start from raw 2 and column 3.
Thanks very much for the help.
have created this VBA code:
iRow = ws.Cells(Rows.Count, 3).End(xlUp).Offset(1, 0).Row
ws.Cells(iRow, 3) = TextBox1.Value
My problem is how to set this code to start the data from row 10 and
column 3, because currently it start from raw 2 and column 3.
Thanks very much for the help.