How to input data from a form text box to a worksheet cell lookup

Eurekaonide

Active Member
Joined
Feb 1, 2010
Messages
422
Hi I wonder if you can help please as my mind has gone blank!

I have a user form im creating where users can update / add / amend data in the vast number of cells of worksheets, however Im struggling with the VBA code to write for the data to be put into the worksheets from the form that they fill in.

Its a simple form with text boxes currently where they can input data.

The complexity comes from being able to locate the right cell in the worksheet to put the data into.

it has a few conditions to locate the correct cell;
  • The ID which is always in Column A but may appear several times
  • The Stage which is in Column B and could appear multiple times
  • The Instance number which is a sequential number ranging from 1 onwards (these are unique as in 1 only ever appears once against that ID and that Stage)

My formula for looking up the data goes like this;
=LOOKUP(2,1/(('Raw Data'!$A1:$A600=HOME!$B$12)*('Raw Data'!$C1:$C600=HOME!L$20)*('Raw Data'!$H1:$H600=HOME!K$22)),'Raw Data'!$G1:$G600)
But what would I write in VBA to look this up and then place the new data they have put in the text box into the corresponding cell?

Thanks for your assistance
 

Excel Facts

Format cells as date
Select range and press Ctrl+Shift+3 to format cells as date. (Shift 3 is the # sign which sort of looks like a small calendar).
Hi I wonder if you can help please as my mind has gone blank!

I have a user form im creating where users can update / add / amend data in the vast number of cells of worksheets, however Im struggling with the VBA code to write for the data to be put into the worksheets from the form that they fill in.

Its a simple form with text boxes currently where they can input data.

The complexity comes from being able to locate the right cell in the worksheet to put the data into.

it has a few conditions to locate the correct cell;
  • The ID which is always in Column A but may appear several times
  • The Stage which is in Column B and could appear multiple times
  • The Instance number which is a sequential number ranging from 1 onwards (these are unique as in 1 only ever appears once against that ID and that Stage)

My formula for looking up the data goes like this;
=LOOKUP(2,1/(('Raw Data'!$A1:$A600=HOME!$B$12)*('Raw Data'!$C1:$C600=HOME!L$20)*('Raw Data'!$H1:$H600=HOME!K$22)),'Raw Data'!$G1:$G600)
But what would I write in VBA to look this up and then place the new data they have put in the text box into the corresponding cell?

Thanks for your assistance
If you are updating / ammending data then are you populating the userform from the worksheet prior to the updates being made on the userform?

If you are adding rows then you will need a new unique id.

Is the Instance number unique across all rows and not just for a combination of ID and Stage.

A sample of your data using XL2BB would be handy.

A image of your form would also be handy.
 
Upvote 0
Thanks Im not really in a position to upload the data as it is sensitive.
What I have tried to do now is record a macros carrying out the two filters I need but I then need to be able to state I want the selected cell to be for example C35 in the below example - however whilst on this occasion their is data in C35 there may well not be on other occassions so I cant use the VBA code go to the last row. Ive tried asking it to go to the Column then drop down a row whilst filtered but this does not seem to work either.

ActiveSheet.Range("$A$1:$BH$645").AutoFilter Field:=1, Criteria1:="P-43901"
ActiveSheet.Range("$A$1:$BH$645").AutoFilter Field:=2, Criteria1:="SG1"
Range("C1" & ActiveCell.Row + 1).Select

1692700400925.png


So my question is:
1) how do I navigate it to the correct row even if this cell is empty
2) then the data the user has input into the input box needs to be updated into that cell

Thanks
 
Upvote 0
Ive now changed my formula to the below but it states Object required

ActiveSheet.Range("$A$1:$BH$645").AutoFilter Field:=1, Criteria1:="P-43901"
ActiveSheet.Range("$A$1:$BH$645").AutoFilter Field:=2, Criteria1:="SG1"
Activeshett.Range("C1").Offset(1).SpecialCells(xlCellTypeVisible).Select
 
Upvote 0
Ive now changed my formula to the below but it states Object required

ActiveSheet.Range("$A$1:$BH$645").AutoFilter Field:=1, Criteria1:="P-43901"
ActiveSheet.Range("$A$1:$BH$645").AutoFilter Field:=2, Criteria1:="SG1"
Activeshett.Range("C1").Offset(1).SpecialCells(xlCellTypeVisible).Select
OK I think I have that part sorted by using the below formula

ActiveSheet.Range("$A$1:$BH$645").AutoFilter Field:=1, Criteria1:="P-43901"
ActiveSheet.Range("$A$1:$BH$645").AutoFilter Field:=2, Criteria1:="SG1"
Range("C2:C645").Select
With Selection
.Offset(1).SpecialCells(xlCellTypeVisible).Activate
End With

Please advise if you think this is incorrect
 
Upvote 0

Forum statistics

Threads
1,215,073
Messages
6,122,977
Members
449,095
Latest member
Mr Hughes

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top