Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi,
I am tryinng to find if a value in one column is contained in same row of another column but unsuccessful so far. I have tried SEARCH, FIND functions but not working as expected.
Following is the example:
Column A | Column B | Result |
ewkrjewkrje'rj | krj | TRUE |
e2q34123 | 2q | TRUE |
kr1eweqwrqw | kr12 | FALSE |
I want achieve the Result using DAX calculation.
Can someone suggest. Thanks in advance.
Suhas
Solved! Go to Solution.
SEARCH function works with your sample data
What is your formula?
Result = SEARCH ( TableName[Column B], TableName[Column A],, 0 ) > 0
SEARCH function works with your sample data
What is your formula?
Result = SEARCH ( TableName[Column B], TableName[Column A],, 0 ) > 0