Get results to userform labels

Akbarov

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

İ use VBA code which searchs product , find it and if needed orders found product to worksheet ( form )
A4,5,6.
B4,5,6.
C4,5,6.
D4,5,6 etc.
can anyone help me to get same orders on userform labels?

Code:
Option Explicit


Private Sub cmdAdd_Click()


Dim RowNum As Long
Dim ListBoxRow As Long


Worksheets("Form").Activate
RowNum = Application.CountA(Range("A:A")) + 2


ListBoxRow = lstSearchResults.ListIndex + 2
Cells(RowNum, 1).Value = Worksheets("Product Search").Cells(ListBoxRow, 1).Value


Unload Me


End Sub


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 "Hec bir netice tapilmadi!"
    Exit Sub
End If




lstSearchResults.RowSource = "SearchResults"


End Sub


Private Sub UserForm_Click()


End Sub


Private Sub UserForm_Initialize()
txtKeywords.SetFocus
Worksheets("Product Search").Range("A2:C100").ClearContents
End Sub
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.

Forum statistics

Threads
1,214,551
Messages
6,120,161
Members
448,948
Latest member
spamiki

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