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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
I added a custom column using the following:
if SEARCH( "FY",[Deal ID],1,0)>0 then [Deal ID]
else [Sales Order]
I get confirmation of no syntax errors, but when I click 'OK' to exit out of the custom column screen, the main screen then throws the following:
Expression.Error: The name 'SEARCH' wasn't recognized. Make sure it's spelled correctly.
Can you please help with what I am doing incorrectly?
Solved! Go to Solution.
@Anonymous If this is DAX then it should be:
if(SEARCH( "FY",[Deal ID],1,0)>0, [Deal ID], [Sales Order])
If this is Power Query Editor then your if then else syntax is correct but there is no SEARCH function in Power Query it is something like Text.Contains.
Thank you! This was in Power Query Editor, so I was able to use Text. function to get what I needed.
@Anonymous If this is DAX then it should be:
if(SEARCH( "FY",[Deal ID],1,0)>0, [Deal ID], [Sales Order])
If this is Power Query Editor then your if then else syntax is correct but there is no SEARCH function in Power Query it is something like Text.Contains.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 21 | |
| 10 | |
| 9 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 34 | |
| 31 | |
| 20 | |
| 13 | |
| 12 |