I'm building a Rent Sheet. I'm using a UserForm to gather information (i.e. Lot#, Amount Paid, Check#, etc.)
I would like to use the Lot # as a reference for my table.
Example: If I enter Lot# 32 and click 'Submit', then the information starts at cell N34 (The starting cell of information for Lot# 32) of my table.
as you can see I have no problem with 'Offset' to LIST information down the sheet, but this one is a bit more difficult for me.
In short, I would like the Lot # to tell Excel where to put the data.
I would like to use the Lot # as a reference for my table.
Example: If I enter Lot# 32 and click 'Submit', then the information starts at cell N34 (The starting cell of information for Lot# 32) of my table.
as you can see I have no problem with 'Offset' to LIST information down the sheet, but this one is a bit more difficult for me.
In short, I would like the Lot # to tell Excel where to put the data.
Code:
Sub Continue_Button_Click()
'Clicking the continue buton will do the following:
'
'
If Background_CheckBox = True Then
Sheets("Data").Range("Data_Start").Offset(1, 8).Value = "65.00"
End If
Sheets("Data").Range("Data_Start").Offset(1, 1).Value = Check_MO
Sheets("Data").Range("Data_Start").Offset(1, 16).Value = Amount_Paid
Unload Rent_UF
End Sub