Userform VBA without opening worksheet

Akbarov

Active Member
Joined
Jun 30, 2018
Messages
347
Office Version
  1. 365
Platform
  1. Windows
Hey community,

Can anyone help me please, i use following formula ( userform ) to search and add product to worksheet. Product list is in Stock Data sheet,and it adds found product to Form sheet. but when i click search it is opening Stock Data sheet, can it find and add product without opening Stock Data sheet?

Code:
Private Sub cmdSearch_Click()


Dim RowNum As Long
Dim SearchRow As Long


RowNum = 2
SearchRow = 2


Worksheets("Stock Data").Activate


Do Until Cells(RowNum, 1).Value = ""


    If InStr(1, Cells(RowNum, 2).Value, txtKeywords.Value, vbTextCompare) > 0 Then
        Worksheets("Product Search").Cells(SearchRow, 1).Value = Cells(RowNum, 1).Value
        Worksheets("Product Search").Cells(SearchRow, 2).Value = Cells(RowNum, 2).Value
        Worksheets("Product Search").Cells(SearchRow, 3).Value = Cells(RowNum, 3).Value
        SearchRow = SearchRow + 1
    End If
    RowNum = RowNum + 1
Loop


If SearchRow = 2 Then
    MsgBox "Not found!"
    Exit Sub
End If


lstSearchResults.RowSource = "SearchResults"
 

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
How 'bout:

Hey community,

Code:
Private Sub cmdSearch_Click()


Dim RowNum As Long
Dim SearchRow As Long
Dim wsSD as Worksheet

set wsSD  = Worksheets("Stock Data")

RowNum = 2
SearchRow = 2



Do Until wsSD.Cells(RowNum, 1).Value = ""


    If InStr(1, wsSD.Cells(RowNum, 2).Value, txtKeywords.Value, vbTextCompare) > 0 Then
        Worksheets("Product Search").Cells(SearchRow, 1).Value = wsSD.Cells(RowNum, 1).Value
        Worksheets("Product Search").Cells(SearchRow, 2).Value = wsSD.Cells(RowNum, 2).Value
        Worksheets("Product Search").Cells(SearchRow, 3).Value = wsSD.Cells(RowNum, 3).Value
        SearchRow = SearchRow + 1
    End If
    RowNum = RowNum + 1
Loop


If SearchRow = 2 Then
    MsgBox "Not found!"
    Exit Sub
End If


lstSearchResults.RowSource = "SearchResults"

NOTE: I DID NOT TEST THIS
 
Upvote 0
Another (untested) option
Code:
Private Sub cmdSearch_Click()


Dim RowNum As Long
Dim SearchRow As Long


RowNum = 2
SearchRow = 2


With Worksheets("Stock Data")


Do Until .Cells(RowNum, 1).Value = ""


    If InStr(1, .Cells(RowNum, 2).Value, txtKeywords.Value, vbTextCompare) > 0 Then
        Worksheets("Product Search").Cells(SearchRow, 1).Value = .Cells(RowNum, 1).Value
        Worksheets("Product Search").Cells(SearchRow, 2).Value = .Cells(RowNum, 2).Value
        Worksheets("Product Search").Cells(SearchRow, 3).Value = .Cells(RowNum, 3).Value
        SearchRow = SearchRow + 1
    End If
    RowNum = RowNum + 1
Loop
End With

If SearchRow = 2 Then
    MsgBox "Not found!"
    Exit Sub
End If


lstSearchResults.RowSource = "SearchResults"
 
Upvote 0
Glad we could help & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,214,788
Messages
6,121,588
Members
449,039
Latest member
Arbind kumar

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