VBA for multi-criteria find using a UserForm?

iAmPatch

Board Regular
Joined
Jan 13, 2015
Messages
86
Hi

I've created an inventory tracker with the help of @My Awser Is This
The inventory tracker has 3 worksheets, Dashboard, Released Items and Purchase Orders
In the Dashboard worksheet, I already have 2 command buttons (Add Released Items and Add Purchase Order) which pops up UserForms respectively

I would like to ask for assistance in coding a third command button which when clicked on, would pop up another UserForm wherein the user would key in specific search criteria (Vendor and Item). Once done, the user would then click on the "Search" button and the code should search in Purchase Orders sheet. If the value of the searched item in Purchase Orders is "0" or there is no item match; user should be routed to the Purchase Order UserForm. But if there is an available item, the user should be routed to the Released Items UserForm.

I tried using the record-macro option and fooling around with the "Find" function of Excel; but Excel didn't record the "Find" steps I did ...

Is this possible to do?

Thanks
 
Last edited:

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
Well step one to show the userform you would use something like this:
Userform1.show

But if you have already built a userform I would assume you already know this

Then if you have a button on your userform

And a Textbox on your userform you enter the value you want to search for in the textbox

But its best if you narrow down your search Range.
It's best to say search column B on sheet name Mom
If you just say search sheet Mom then the script has to search the entire sheet which will take a long time.

And you said search for value and if value if nothing meaning it found nothing or found zero then do this.

If we are look for a value like 25 well if there is no value 25 but then 25 equals zero that's not possible as far as I know.

Like: Look for Billy and if there is no Billy or Billy equals Jane then do this

But here is a script that may help you.
Code:
Private Sub CommandButton1_Click()
Dim SearchString As String
Dim SearchRange As Range
SearchString = TextBox1.Value
Set SearchRange = Sheets("Me").Range("A1:A20").Find(SearchString, LookIn:=xlValues, lookat:=xlWhole)
If SearchRange Is Nothing Then UserForm2.Show: Exit Sub
UserForm3.Show
End Sub
 
Upvote 0
Hi @My Aswer Is This

The code you shared was flawless :) And I updated it again to match the information I have currently.

Code:
Private Sub Command_Search_Click()

Dim SearchString As String
Dim SearchRange As Range
SearchString = TB_SearchValue.Value
Set SearchRange = Sheets("Purchase Orders").Range("A:A").Find(SearchString, LookIn:=xlValues, lookat:=xlWhole)
If SearchRange Is Nothing Then PurchaseOrder.Show: Exit Sub
ReleasedItems.Show

End Sub

Question though, is it possible to show a message saying how many items are still on hand when the search is successful; prior to showing the ReleasedItems UserForm? Like if we search for "MGMPencil", and the is indeed an MGMPencil in Purchase Orders sheet, with 500 items on hand (This would be found in Column F of the Purchase Orders sheet). It will show a message, "Hey, there's still 500 of this that you can giveaway". Then the person would click on "Ok"; then the ReleasedItems UserForm will show up
 
Last edited:
Upvote 0
In my example I used:
Set SearchRange = Sheets("Me").Range("A1:A20")

But in your script your searchRange was:
Set SearchRange = Sheets("Purchase Orders").Range("A1").Find(SearchString,

Which means only look in A1
If that is what you want to do then we can do this another way. We just look at A1.

But you earlier said in your last post:
"Search" button and the code should search in Purchase Orders sheet.

That sounded like you wanted to do a search looking for something.

As now it sounds like you only want to look in A1.
 
Upvote 0
Hi @My Aswer Is This

I'm sorry, I updated the SearchRange to "A:A". I've edited my previous post as well. The code now is
Code:
Private Sub Command_Search_Click()

Dim SearchString As String
Dim SearchRange As Range
SearchString = TB_SearchValue.Value
Set SearchRange = Sheets("Purchase Orders").Range("A:A").Find(SearchString, LookIn:=xlValues, lookat:=xlWhole)
If SearchRange Is Nothing Then PurchaseOrder.Show: Exit Sub
ReleasedItems.Show

End Sub
 
Upvote 0
I'm still confused. Are we expecting to find this item more then once.
And are we looking in column A for the name of the item and looking in column F for the quanity found?

Because your search range Is column A but then you say:
and the is indeed an MGMPencil in Purchase Orders sheet, with 500 items on hand (This would be found in
Column F
of the Purchase Orders sheet)
 
Upvote 0
Ideally we are just searching for the unique value in Column A. Which I think is already satisfied by the:

"Set SearchRange = Sheets("Purchase Orders").Range("A:A").Find(SearchString, LookIn:=xlValues, lookat:=xlWhole"

and there should be duplicate values appering in Column A.

I was just thinking if it's possible to add in a second condition wherein if there is indeed an item match in Column A; there would be a message that would notify the person that there are still X number of items available for releasing. The X number of items is found in Column F.
 
Upvote 0
So your saying if Duck is found in A20 then if F20 has 45
This means we have 45 Ducks.
And you want a message box to popup saying we have 45 ducks.
Is that correct?
 
Upvote 0
Yes, that is correct. Or the message box could just say "We still have 45 of those, click "Ok" for release form
 
Upvote 0
I will work on that.
Just curious why you need 4 Userforms.

I have been working with Userforms for years and have never found a need for more then one.

When lets say userform me popsup what will the user see different from what he may see when userform You popsup.
 
Upvote 0

Forum statistics

Threads
1,214,940
Messages
6,122,352
Members
449,080
Latest member
Armadillos

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