Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I don 't have any VBA knowdledge, therefore I'm using a simple macro somebody
wrote to add a user form to my worksheet. The macro looks up the next empty row on a pre-defined worksheet and writes the user input into a pre-defined column of the empty row. It looks like this: 'find first empty row in database lRow = ws.Cells(Rows.Count, 1) _ .End(xlUp).Offset(1, 0).Row 'copy the data to the database With ws .Cells(lRow, 2).Value = Me.cboPeriod.Value Now I'd like to change the macro so that instead of finding the first empty row in the database it should find the specific row where it finds let 's say the text "year" in column 1 and then write back the user input into column 2 of the same row. Thanks for your help! |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Code to open Notes database and find a specific doc | Excel Programming | |||
find a specific cell from the entire worksheet | Excel Worksheet Functions | |||
how can i find a specific date of a database | Excel Discussion (Misc queries) | |||
How Do I Find A Specific Worksheet | Excel Discussion (Misc queries) | |||
Auto find a specific row and copy it to another worksheet | Excel Programming |