Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hello,
I am trying to group the same businesss area into the same category. In my exemple, i need to group Professional and VP into VMHS, because i need to the total num and den for the VMHS in order to build my report.
best regards,
Anis
Solved! Go to Solution.
@Anonymous , You need to create a new column
cate new = if([Category] in {"VP"}, "VMHS", [category])
then you can create a sum measure on a numeric column
You are creating a column not measure. Also category is text column will not sum
@Anonymous , You need to create a new column
cate new = if([Category] in {"VP"}, "VMHS", [category])
then you can create a sum measure on a numeric column
You are creating a column not measure. Also category is text column will not sum
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.