Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.

Reply
Xeth
Frequent Visitor

Need help in building matrix/card visual with diff aggregation depending on data

With the following sample data (Blue columns)

Xeth_0-1711538937533.png

  • Column Capa has been created as a measure (FC/Plan) and added as a column to the table (to get aggregation)
  • Column Utilization has also been created as a measure (Actuals/FC)

I have created a report and want to build a matrix visual as follows...

Xeth_1-1711539133560.png

Challenges I am facing:

  • The capa aggregation at level Etype and Cluster is not what I expect, using the measure at the column level in the table
  • The utilization aggregation as level Etype and Cluster is not being recalculated but shows summary %
  • Unable to get the HC column as I has to count only if the Etype is not Pool and/or if there is non-zero plan/FC
  • Likewise with the grand total row.
  • Can measures be created for the Capa, Utilization and HC to also display in Card visuals and that get updated depending on the data that is selected (eg. If Cluster is seleted, then data should be conssolidated at this level, likewise for Etype)
1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Xeth ,

 

According to your description,we can update two measures.

Capa = DIVIDE(SUM('Table'[FC]),SUM('Table'[Plan]))
Utilization = DIVIDE(SUM('Table'[Actuals]),SUM('Table'[FC]))

Then the result is as follows.

vtangjiemsft_0-1711591394633.pngvtangjiemsft_1-1711591409736.png

As for the HC column, what is your logic and expected outcome?

If I have misunderstood you, please clarify in a follow-up reply. Please provide sample data and your expected result with backend logic and special examples.

 

Best Regards,

Neeko Tang

If this post  helps, then please consider Accept it as the solution  to help the other members find it more quickly. 

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hi @Xeth ,

 

According to your description,we can update two measures.

Capa = DIVIDE(SUM('Table'[FC]),SUM('Table'[Plan]))
Utilization = DIVIDE(SUM('Table'[Actuals]),SUM('Table'[FC]))

Then the result is as follows.

vtangjiemsft_0-1711591394633.pngvtangjiemsft_1-1711591409736.png

As for the HC column, what is your logic and expected outcome?

If I have misunderstood you, please clarify in a follow-up reply. Please provide sample data and your expected result with backend logic and special examples.

 

Best Regards,

Neeko Tang

If this post  helps, then please consider Accept it as the solution  to help the other members find it more quickly. 

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors