Search results

  1. D

    How to add a title to the search results in Excel 2016 using VBA

    Private Sub input_search_Change() Dim arr(), result, i As Long, a As Long, dk As String dk = input_search.Text arr = Sheets("Sheet1").Range("A4:D20006").Value ReDim result(1 To UBound(arr, 1), 1 To 6) For i = 1 To UBound(arr, 1) If arr(i, 2) Like "*" & dk &...
  2. D

    How to add a title to the search results in Excel 2016 using VBA

    This is my source data table, I would greatly appreciate any assistance
  3. D

    How to add a title to the search results in Excel 2016 using VBA

    I have built a data table and a data search function for Excel using a VBA ListBox. Everything works perfectly, but now I want to add a title to the search results. Does anyone know how to do this? Currently, the title is not included in the search results when the program runs. Private Sub...
  4. D

    Hi

    Beginner here in the VietNam, I'm very happy to join the community. Wishing everyone a great day!
Back
Top Bottom