userform data entry

G

Guest

i am new to userforms. i have created a userform that has three text boxes. i
can transfer the data from the userform to a spreadsheet,but what i want to
do is direct each entry to specified cells, eg 1:500, do i need another text
box to enter a number in it, then code to direct the entry
thankyou john
 
G

Guest

Dim nexrow as Long, rng as Range
With Worksheets("sheet1")
nextRow = .Cells(rows.count,1).End(xlup).row
if not isempty(.cells(nextRow,1)) then
nextrow = nextrow + 1
end if
set rng = .Cells(nextRow,1)
End with
Msgbox "I will enter my data in " & vbNewLine _
rng.Address & " to " & rng.offset(0,2).Address
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top