Forum Discussion
ThoSch
9 years agoRegular Visitor
cut Text with LEFT and FIND
Hi, i need to cut die the domain from an e-mail columns, i tryed the command: Domain1 = LEFT(Tabelle1[Column1];FIND("@";Tabelle1[Column1]-1)) And iam wondering that i h...
- 9 years ago
Hi,
You can do this so much easier via the Query Editor and use the split column transformation and split by @
BR
Erik
PavelR
9 years agoSolution Specialist
Hi ThoSch. Subtracting by 1 should be after FIND function. DAX should be as:
Domain1 = LEFT(Tabelle1[Column1];FIND("@";Tabelle1[Column1])-1)Regards.
Pavel
ThoSch
9 years agoRegular Visitor
thanks, that solved one problem, but if there is empty field, i have the other error.