Partial or Fuzzy Match inside PowerPivot (DAX alternative to 2^15)

nikkollai

New Member
Joined
Sep 10, 2014
Messages
49
Hello Dear Friends,

I think most of the people faced with fuzzy match (partial match) problem found the following tutorial posted by Mike Girvin ExcelIsFun) and discovered a surprisingly interesting solution that starts with = LOOKUP(2^15(SEARCH(.......

Here is the url to the video tutorial:
Excel Magic Trick 323: Partial Text VLOOKUP (Fuzzy Match)
https://www.youtube.com/watch?v=bKmxFhOY70M


I was wondering is there a similar solution that could be achieved with DAX inside PowerPivot. I will highly appreciate your ideas.

Tks, N -
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
not sure if this will help but I use this for checking the title field for certain text values that are in a lookup table

=FIRSTNONBLANK(FILTER(
VALUES(Lookup[Values]),
SEARCH(
Lookup[Values],
Coverage[Title],
1,
0
)
)
,1
)
 
Upvote 0

Forum statistics

Threads
1,214,421
Messages
6,119,392
Members
448,891
Latest member
tpierce

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