Loop through a column, find a value, return offset value to cell

harts

Board Regular
Joined
Apr 5, 2011
Messages
111
Office Version
  1. 365
Platform
  1. Windows
I have been trying to find a solution to my problem. I find bits a pieces that kind of work but not a whole solution. I need to loop the names listed D2:AZ2, find a match in BH1:BH40, then return the value in BF1:BF40 to D3:AZ3. Thank you in advanced. It is much appreciated.
 
this will find a match with just the first word, it looks for a space so if there isn't a space it doesn't find a match, but you could combine the two.
VBA Code:
Sub test()
Darray = Range("D2:az3")  ' load range D2 to Az3 into a variant array
bfarray = Range("BF1:Bh40") ' load ranger  BF1 to Bh40 into a varaint array
 For i = 1 To UBound(Darray, 2) ' loop through each column D to Az
  Textb = Split(Darray(1, i), " ")
    If IsArray(Textb) Then
    For j = 1 To UBound(bfarray, 1) ' 2nd loop through each row 1 to 40
     Textg = Split(bfarray(j, 3), " ")
  
     If IsArray(Textg) Then
      If Textb(0) = Textg(0) Then ' compare the two first words
       Darray(2, i) = bfarray(j, 1)        ' when match found copy to row 3
       Exit For
      End If
     End If
    Next j
  ' you could add "else" here and then post the first code in here
   End If
 Next i
Range("D2:az3") = Darray  ' write the array back to worksheet
 
End Sub
I get a run time error 9 subscript out of range on this line- If Textb(0) = Textg(0) Then ' compare the two first words
 
Upvote 0

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
This works perfect thank you for your time and teaching
Thanks for updating your details. (y)

When posting vba code in the forum, please use the available code tags. It makes your code much easier to read/debug & copy. My signature block below has more details. I have added the tags for you this time in post 5. 😊

Give this one a try

VBA Code:
Sub test3()
  With Range("D4:AZ4")
    .Formula = "=LET(bp,$BP1:$BP40,bs,$BS1:$BS40,XLOOKUP(D1,bp,bs,XLOOKUP(TEXTBEFORE(D1,"" "",,,1)&""*"",bp,bs,"""",2)))"
    .Value = .Value
  End With
End Sub
 
Upvote 0
Thanks for updating your details. (y)

When posting vba code in the forum, please use the available code tags. It makes your code much easier to read/debug & copy. My signature block below has more details. I have added the tags for you this time in post 5. 😊

Give this one a try

VBA Code:
Sub test3()
  With Range("D4:AZ4")
    .Formula = "=LET(bp,$BP1:$BP40,bs,$BS1:$BS40,XLOOKUP(D1,bp,bs,XLOOKUP(TEXTBEFORE(D1,"" "",,,1)&""*"",bp,bs,"""",2)))"
    .Value = .Value
  End With
End Sub
I greatly apricate your time, I have 1 more work around with this vba. Is it possible to do a if then maybe that if BN contains the word "Rig Cost" it will move on to the next reference with that same name?
 
Upvote 0
I greatly apricate your time, I have 1 more work around with this vba. Is it possible to do a if then maybe that if BN contains the word "Rig Cost" it will move on to the next reference with that same name?
To clarify basically if col BP1:BP40= d1:AZ1 & BN:BN = "rig cost" then get that column BS value, if it doesn't get the next value. I do apologize for not being organized, wasn't until I ran that I realized it wasn't 100% right.
 
Upvote 0
To clarify
I think that you may have done just the opposite?
Don't the following two things contradict each other?
if BN contains the word "Rig Cost" it will move on
if ... & BN:BN = "rig cost" then get that column BS value

What about some sample data and the expected results with XL2BB and explain again in relation to the sample data?

Make up some dummy data that shows the variety of things that can happen with names matching fully/partially/not at all and "rig cost" v not "rig cost" in say columns D:P, hide columns Q:AZ and post what is visible with XL2BB
 
Upvote 0

Forum statistics

Threads
1,215,094
Messages
6,123,071
Members
449,092
Latest member
ipruravindra

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