Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi Guys,
I have a requirement wherein I have 3 columns Group, SubGroup, Volume(Measure). Group has 2 values (A, B) and SubGroup A has 3 values (x,y,z) and subgroup B has 1 value x, and also there is a column Volume(Sum) based on each field in a table. I want to get an Output where we are able to display all three columns but the volume is aggregated based on only Group Column and does not calculate Volume(Sum) based on Subroup Column. Is there any way we can achieve this?. Please find the example image below.
Any help would be highly appreciated.
Thanks in Advance
Solved! Go to Solution.
Instead of using your subgroup column, you could just use a measure instead. You can then just show a simple sum of your volume column.
SubGroup Measure = var vSubGroups = VALUES(Table[SubGroup])
Return IF(COUNTROWS(vSubgroups)=1, vSubGroups, " ") //returns a space instead of BLANK() so it shows
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
Instead of using your subgroup column, you could just use a measure instead. You can then just show a simple sum of your volume column.
SubGroup Measure = var vSubGroups = VALUES(Table[SubGroup])
Return IF(COUNTROWS(vSubgroups)=1, vSubGroups, " ") //returns a space instead of BLANK() so it shows
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
Yes, Even this works, Thanks a lot for the Idea.
Thanks,
Sathwik
Have you tried not including the subgroup in your table or matrix visual? Or does your expected output really need to show the name of the single subgroup or blank if there is more than one subgroup?
Hi @lbendlin ,
I have created a custom column, in which I have renamed all the subgroups(x,y,z) = "" of Group A. So now instead of considering 3 different subgroups, the table will display it as one subgroup. This way my both goals of displaying blank in the subgroup column for that particular group (A) and aggregating it as one group only can be achieved.
Thanks
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
22 | |
10 | |
10 | |
9 | |
7 |