VBA - searching values in the same groups

omersinem

New Member
Joined
Sep 13, 2022
Messages
5
Office Version
  1. 2019
Platform
  1. Windows
Hello,
I wanted to find the value I want among the one thousand data in Excel Sheet and I used binary search algorithm it doesn't work for me. Then, I got some errors so I simply rearrange the problem to be understandable more. I would be grateful if you could write the code for the following problem;

1. Check if there is a group (that includes same numbers) at first column
2. If there is a group, select the cell including a value greater than zero at its third column at that group.
3. Write “correct” on the cell in selected row of fourth column

MicrosoftTeams-image.png

I hope this was clear enough. If there is anything that you don't understand please let me know.
Thanks in advance for your help!
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
Using the data in your picture, the only cell that would contain "correct" would be cell D9. Is this correct? If not, please clarify in detail.
 
Upvote 0
Try:
VBA Code:
Sub SearchValues()
    Application.ScreenUpdating = False
    Dim v As Variant, dic As Object, i As Long, rng As Range
    v = Range("A2", Range("A" & Rows.Count).End(xlUp)).Resize(, 3).Value
    Set dic = CreateObject("Scripting.Dictionary")
    For i = LBound(v) To UBound(v)
        If Not dic.exists(v(i, 1)) Then
            dic.Add v(i, 1), Nothing
            With ActiveSheet
                .Range("A1").CurrentRegion.AutoFilter 1, v(i, 1)
                If [subtotal(103,A:A)] - 1 > 1 Then
                    For Each rng In Range("C2", Range("C" & Rows.Count).End(xlUp)).SpecialCells(xlCellTypeVisible)
                        If Split(rng, " ")(0) > 0 Then
                            rng.Offset(, 1) = "correct"
                        End If
                    Next rng
                End If
            End With
        End If
    Next i
    Range("A1").AutoFilter
    Application.ScreenUpdating = True
End Sub
 
Upvote 0
Solution
Denemek:
[KOD=vba]
Alt Arama Değerleri()
Application.ScreenUpdating = Yanlış
Dim v As Variant, dic As Object, i As Long, rng As Range
v = Aralık("A2", Aralık("A" & Rows.Count).End(xlUp)).Resize(, 3).Value
Set dic = CreateObject("Scripting.Dictionary")
i = LBound(v) için UBound(v) için
Eğer dic.varsa(v(i, 1)) O zaman
dic.Add v(i, 1), Hiçbir şey
ActiveSheet ile
.Range("A1").CurrentRegion.AutoFilter 1, v(i, 1)
Eğer [ara toplam(103,A:A)] - 1 > 1 ise
Her rng In Range("C2", Range("C" & Rows.Count).End(xlUp)).SpecialCells(xlCellTypeVisible)
Eğer Split(rng, " ")(0) > 0 ise
rng.Offset(, 1) = "doğru"
Bitir
sonraki zil
Bitir
İle bitmek
Bitir
sonraki ben
Aralık("A1").Otomatik Filtre
Application.ScreenUpdating = Doğru
Alt Bitiş
[/KOD]
It works :büyük sırıtış:. Thank you for your help.
 
Upvote 0

Forum statistics

Threads
1,223,888
Messages
6,175,203
Members
452,617
Latest member
Narendra Babu D

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