S
stevem
Ok, I have a combobox on Sheet1 which asks for a name. I have to fin
that name on Sheet2 (one name per column) then find the first empty ro
in that column.. I was trying to piece together what I could from th
little knowledge I have and heres a piece of code that does not work
but you might get some idea of what I'm attempting
Sheets("Light Class").Activate
With frmPilot
On Error Resume Next
Cells.Find(What:=cbName.Text, lookat:=xlPart).Select
Range(ActiveCell).End(xlDown).Select
End With
I'd rather not use the Sheets().Activate
It does go to the correct sheet and selects the right name, but doesn'
move down to the first empty row.
Thanks in advance,
Stev
that name on Sheet2 (one name per column) then find the first empty ro
in that column.. I was trying to piece together what I could from th
little knowledge I have and heres a piece of code that does not work
but you might get some idea of what I'm attempting
Sheets("Light Class").Activate
With frmPilot
On Error Resume Next
Cells.Find(What:=cbName.Text, lookat:=xlPart).Select
Range(ActiveCell).End(xlDown).Select
End With
I'd rather not use the Sheets().Activate
It does go to the correct sheet and selects the right name, but doesn'
move down to the first empty row.
Thanks in advance,
Stev