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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Dear Colleagues,
I have a column that stores emails, called [leadsemail].
And a Helper column, called [helper1], that extract the emails from the [leadsemail] column based on a condition:
helper1 = if(ISBLANK(TableLeads[opportunityID]),TableLeads[leadsemail])
The FIND function works only if I refer to the [leadsemail] column.
helper3 = FIND("@",TableLeads[leadsemail])
If I refer to the helper1 column, I get an error (although the content of both columns is the same, both text).
helper3 = FIND("@",TableLeads[helper1])
The error is "The search Text provided to function 'FIND' could not be found in the given text."
Thanks a lot!
Viorel
Bucharest
Solved! Go to Solution.
Hi @ViorelCa
You might have some elements in your helper1 column which do not have any "@" at all.
In that case, Find() function returns an error and is not able to compute the correct calculation for any rows of your helper1 column - even those which actually include the symbol "@".
If you add an IfError statement, you will get rid of this error:
=IfError( Find ("@" , TableLeads[helper1] ) , 0 )
Hi @ViorelCa
You might have some elements in your helper1 column which do not have any "@" at all.
In that case, Find() function returns an error and is not able to compute the correct calculation for any rows of your helper1 column - even those which actually include the symbol "@".
If you add an IfError statement, you will get rid of this error:
=IfError( Find ("@" , TableLeads[helper1] ) , 0 )
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 60 | |
| 53 | |
| 40 | |
| 15 | |
| 14 |
| User | Count |
|---|---|
| 97 | |
| 81 | |
| 35 | |
| 29 | |
| 25 |