March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi, i have a field that has a seperator "-" 2 times , Example :
4124124-RET-2242d
trtre121-1t5-123213
I´m new here, i get error on this, for the first split.
NewColumn = Lef(Field, find("-",Field,1,)-1)
if i try the Lef(Field, find("-",Field,1,)1) - Positive number it works)
Thanks.
Solved! Go to Solution.
Hi @joaofigu
OK so what are you actually trying to do?
Please provide enough sample data to illustrate the problems you are facing. You've supplied 2 examples of strings that contain - but then said not all of the strings contain -
If there is no - then SEARCH returns BLANK and that's an invalid agument for LEFT
Please explain what your expected results are.
Regards
Phil
Proud to be a Super User!
This is easy in the Query Editor.
Go to the Home tab, choose Split Column by Delimiter (under Transform), use a Custom Delimiter, choose your - sign and choose to split at "Each occurrence of the delimiter".
(I know you want the DAX answer, but if you can do it in Query Editor, it's easier and it processes faster.)
This is easy in the Query Editor.
Go to the Home tab, choose Split Column by Delimiter (under Transform), use a Custom Delimiter, choose your - sign and choose to split at "Each occurrence of the delimiter".
(I know you want the DAX answer, but if you can do it in Query Editor, it's easier and it processes faster.)
Hi @joaofigu
OK so what are you actually trying to do?
Please provide enough sample data to illustrate the problems you are facing. You've supplied 2 examples of strings that contain - but then said not all of the strings contain -
If there is no - then SEARCH returns BLANK and that's an invalid agument for LEFT
Please explain what your expected results are.
Regards
Phil
Proud to be a Super User!
Hi @joaofigu
What exactly are you trying to do?
If you want to get all the characters before the first - then use this
Column = LEFT([Column1],FIND("-",[Column1])-1)
Regards
Phil
Proud to be a Super User!
Error descrp: An argument of the 'LEFT' function has the wrong data type or an invalid value.
column = LEFT(cvg[Column1],SEARCH("-",[Column1],1,BLANK())-1)
some lines don't have the "-", so I put the rest of the find form, starting position (1) and if there is no "-" (Blank)
Hello and thank you all, and sorry for not mentioning that some lines do not have the seperator. but it worked in the power editor, I tried to do it again in dax for several columns, in a first try to get the position even for those who didn't have it (it got -1). and then lelft will fetch the number of characters in that column but the left always gives an error.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
133 | |
91 | |
88 | |
64 | |
58 |
User | Count |
---|---|
201 | |
137 | |
107 | |
72 | |
68 |