Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. 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 )
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.
| User | Count |
|---|---|
| 48 | |
| 40 | |
| 40 | |
| 20 | |
| 16 |
| User | Count |
|---|---|
| 70 | |
| 67 | |
| 32 | |
| 27 | |
| 26 |