Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hi Experts ,
I am new to Power BI .
My requirement is I need to populate calculated column as Group from the existing column Item for example
Item Group
Shirt Cloth
Pants Cloth
Laptop Electronic Device
Mobile Electronic Device
Kindly suggest .
Regards
Ganesh Jagdhane
Solved! Go to Solution.
Hi @Anonymous ,
You may add a calculated column to your table with the following DAX:
Group =
SWITCH(TRUE(),
'Table'[Item] = "Shirt", "Cloth",
'Table'[Item] = "Pants", "Cloth",
'Table'[Item] = "Laptop", "Electronic Device",
'Table'[Item] = "Mobile", "Electronic Device",
"Other")
Is this what you are looking for?
Kind regards
Djerro123
-------------------------------
If this answered your question, please mark it as the Solution. This also helps others to find what they are looking for.
Keep those thumbs up coming! 🙂
Proud to be a Super User!
Hi @Anonymous ,
You may add a calculated column to your table with the following DAX:
Group =
SWITCH(TRUE(),
'Table'[Item] = "Shirt", "Cloth",
'Table'[Item] = "Pants", "Cloth",
'Table'[Item] = "Laptop", "Electronic Device",
'Table'[Item] = "Mobile", "Electronic Device",
"Other")
Is this what you are looking for?
Kind regards
Djerro123
-------------------------------
If this answered your question, please mark it as the Solution. This also helps others to find what they are looking for.
Keep those thumbs up coming! 🙂
Proud to be a Super User!
@Anonymous @JarroVGIT
in case of simple comparision with the only column it should be easier to use statement like
Group =
SWITCH('Table'[Item],
"Shirt", "Cloth",
"Pants", "Cloth",
"Laptop", "Electronic Device",
"Mobile", "Electronic Device",
"Other")
do not hesitate to give a kudo to useful posts and mark solutions as solution
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
83 | |
75 | |
64 | |
39 | |
34 |
User | Count |
---|---|
107 | |
56 | |
52 | |
48 | |
40 |