This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
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 April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 3 | |
| 3 | |
| 3 | |
| 3 | |
| 2 |
| User | Count |
|---|---|
| 8 | |
| 8 | |
| 7 | |
| 6 | |
| 6 |