XLOOKUP from a returned value by FILTER

EK2024

New Member
Joined
Nov 5, 2024
Messages
1
Office Version
  1. 365
Platform
  1. Windows
I have this data returned from FILTER,

D9=UNIQUE(FILTER('Q1 PRD'!$Y:$Y,ISNUMBER(SEARCH(D5,'Q1 PRD'!H:H))))


I was trying to bring item description from a different file for the returned value above using XLOOKUP but it didn't work.

=XLOOKUP(D9,Mapping!$E:$E,Mapping!$F:$F)



Can XLOOKUP read the value from FILTER? If not, is there any tips or tricks?
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
There shall be no problem with using the content of the cell (does not matter if it is a constant or result of formula).
May be there are some minor differences between data in 'Q1 PRD'!$Y:$Y and Mapping!$E:$E ?
Like extra spaces in front or back, non-breaking spaces (character 160), decimal numbers which are result of computations and look pretty similar, but differ a bit, like 2 and 2.000000000001 (they will be both visible in a cell as 2), Dates, which in one of thiese ranges are excel dates and in the other one are just texts which only look as dates, etc.

Moreover, you probably can do a step forward and use directly:
Excel Formula:
=XLOOKUP(UNIQUE(FILTER('Q1 PRD'!$Y:$Y,ISNUMBER(SEARCH(D5,'Q1 PRD'!H:H)))),Mapping!$E:$E,Mapping!$F:$F)
 
Upvote 0

Forum statistics

Threads
1,223,578
Messages
6,173,165
Members
452,504
Latest member
frankkeith2233

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