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

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
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,215,029
Messages
6,122,757
Members
449,094
Latest member
dsharae57

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