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 database column which contains workorder numbers (format text - contains alpha numeric characters). I want to create categories based on the first character of the workorder which can be the number 1 to 9. The workorder numbers which start with 2 and 5 are one group, the numbers which start with 3,5, and 7 are the second group. The numbers with 8 and 9 are 2 separate groups. The remaining numbers (1 and 😎 are leftovers and are valid when the not belonging to the first groups.
Tried with if-or calculation but I get the message that I only can use 2 nested or's. Tried also SWTICH function but not succesfully.
Can somebody help?
Thanks in advance.
Solved! Go to Solution.
@Hyperchef1969,
Create the following column in your table.
GROUP = IF(LEFT(Table[workoder],1) IN {"2","5"},"G1",IF(LEFT(Table[workoder],1) IN {"3","4","7"},"G2",IF(LEFT(Table[workoder],1)="6","G3",IF(LEFT(Table[workoder],1)="9","G4","G5"))))
If the above DAX doesn't work, please share sample data of your table here.
Regards,
Lydia
@Hyperchef1969,
Create the following column in your table.
GROUP = IF(LEFT(Table[workoder],1) IN {"2","5"},"G1",IF(LEFT(Table[workoder],1) IN {"3","4","7"},"G2",IF(LEFT(Table[workoder],1)="6","G3",IF(LEFT(Table[workoder],1)="9","G4","G5"))))
If the above DAX doesn't work, please share sample data of your table here.
Regards,
Lydia
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 |
---|---|
123 | |
85 | |
85 | |
70 | |
51 |
User | Count |
---|---|
205 | |
153 | |
97 | |
79 | |
69 |