HDfatboy03
Board Regular
- Joined
- May 23, 2010
- Messages
- 62
Hello
I am creating a multi page form, I'm on the 2nd page and I believe it will end up being a 3 page form. The opportunity that I have is that the 1st form, the information is being transferred to a sheet named AppDB in columns 1 thru 12. The second form (a continuation of the first form) information should be transferred to columns 13 - 37 (in the same row as columns 1 thru 12). Everything is going to the correct column but the second form is starting a new row. I know the opportunity lies in this statement but I don't know how to fix it. Any suggestions.
<CODE>
'find first empty row in database
iRow = ws.Cells(Rows.Count, 1) _
.End(xlUp).Offset(1, 0).Row
<CODE END>
thanks in advance for any assistance
HDfatboy03
I am creating a multi page form, I'm on the 2nd page and I believe it will end up being a 3 page form. The opportunity that I have is that the 1st form, the information is being transferred to a sheet named AppDB in columns 1 thru 12. The second form (a continuation of the first form) information should be transferred to columns 13 - 37 (in the same row as columns 1 thru 12). Everything is going to the correct column but the second form is starting a new row. I know the opportunity lies in this statement but I don't know how to fix it. Any suggestions.
<CODE>
'find first empty row in database
iRow = ws.Cells(Rows.Count, 1) _
.End(xlUp).Offset(1, 0).Row
<CODE END>
thanks in advance for any assistance
HDfatboy03