Forum Discussion
DAX - Help with FIND
Hi Anonymous ,
Sorry, I missed that. Let me revise.
Nathaniel
Hi Anonymous ,
Please check this post out. https://community.powerbi.com/t5/Desktop/joinAlgorithm-and-keyEqualityComparers/m-p/182148#M79842 ImkeF is the magician of M.
Let me know if you have any questions.
If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos 👍are nice too.
Nathaniel
- Anonymous6 years agoNot applicable
I think this is probably the way to go... I'm just not familiar enough with M yet to get it to work.
- Nathaniel_C6 years ago
Community Champion
Anonymous ,
ImkeF is the amazing magician of m. Maybe she has some time to help.
Nathaniel- ImkeF6 years ago
Community Champion
Hi Anonymous
you can create a custom column with this code:
Table.SelectRows(Auths, (x) => Text.Contains([Authorization], x[AuthCode]))This will return a column with the matching rows from the Auth-table.
Make sure to buffer the Auths-table, as this is operation won't be fast.