Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
PetrP
Frequent Visitor

Lookup for value based on sorted mapping table

Hi,

I have been solving the categorization case for some time. The case is therefore:

 

I have an mapping table (MapTable) where the order is important.

 

KeywordBrandIndex
e-tronElectric CAR0
sportbackSport CAR1
Q6SUV2
4xFourCross CAR3
citycarverCity CAR4

 

Also I have Product Table (Products).

Product
A1_citycarver_s-tronic_e-tron
A1_citycarver_s-tronic_TSI
A1_citycarver_s-tronic_TSI_4x
A6_sportback_s-tronic_TSI_4x
A6_avant_s-tronic_TSI_4x
Q6_sportback_s-tronic_TSI_4x
Q6_avant_s-tronic_TSI_e-tron
Q6_family_s-tronic_TSI_4x

 

Based on keyword from MapTable I need to assign Brand. As is known, LOOKUPVALUE function works with native sorting, you cannot specify another column in MapTable for sorting. So after using this function you get wrong Brand values. 

Brand = 
LOOKUPVALUE(MapTable[Brand],MapTable[Keyword],FIRSTNONBLANK(FILTER(VALUES(MapTable[Keyword]),SEARCH(MapTable[Keyword],Products[Product],1,0)),1))

 Second option I often use is that I am using all columns in filter, then I also need to get only specified column result as "search_value".

Brand Sorted = 
LOOKUPVALUE(MapTable[Brand],MapTable[Keyword],SELECTCOLUMNS(FIRSTNONBLANK(FILTER(VALUES(MapTable),SEARCH(MapTable[Keyword],Products[Product],1,0)),1),"search_value",MapTable[Keyword]))

 I hope the second option works, but does anyone have any other solution?

 

The result seems like:

PetrP_0-1618351427553.png

 

Your feedback is welcome!

Thank you,

Petr

2 REPLIES 2
amitchandak
Super User
Super User

@PetrP , Not very clear to me.

 

You can also try like

Minx(filter(MapTable, SEARCH(MapTable[Keyword],Products[Product],,0)>0),MapTable[Brand])

@amitchandak  Your formula just searching by native search, not based on search keyword ranking (index).

 

This means I need to use such a mechanism that iterate all keywords in MapTable row by row by Index rank. E.g..: search e-tron, if not found then search sportback etc.. If any keyword is searched, use the Brand column.

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors