HLOOKUP

j4ymf

Well-known Member
Joined
Apr 28, 2003
Messages
776
Office Version
  1. 365
Platform
  1. Windows
Hello All

I have an HLOOKUP That works, what would the formula be to find the second result that matches N10

Many thanks Jay

VBA Code:
=HLOOKUP(N10,Lookup!$C$1:$CW$2,2,FALSE)
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
How about:

Excel Formula:
=INDEX(FILTER(Lookup!$C$2:$CW$2,Lookup!$C$1:$CW$1=N10),,2)
 
Upvote 0
Solution
Hello ExcelToDAX

WOW thats works fantastic, thank you

can i just add another tweek please,
im wanting to look for the word "Pattre" and return the value in column 3 and 5 after

=N10),,1) finds the first "Pattre" the value im after is 500
=N10),,2) finds the first "Pattre" the value im after is 270

1736351045840.png


VBA Code:
=INDEX(FILTER(Lookup!$C$2:$CW$2,Lookup!$C$1:$CW$1=N10),,2)

hope this makes sence
thank you
 
Upvote 0

Forum statistics

Threads
1,225,772
Messages
6,186,937
Members
453,391
Latest member
patricktoulon1

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