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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
connork
Helper I
Helper I

Avg per Day by Month & YTD in Matrix

Tables

Say I have 2 tables, one with monthly totals by customer and one that has the working days per month (see below).

 

 

Goal

Setup a matrix table that shows the average hours per customer per day by month and YTD.


Issue

I can't get the grand total of the rows to calculate correctly by customer and in total. 

 

Any ideas on how to get this to work in a matrix in PBI?  Just looking for concept of how to apporach this issue (if it is possible).

 

Thanks

 

 

1 ACCEPTED SOLUTION
Phil_Seamark
Employee
Employee

Hi @connork

 

Please give this calculated measure a crack and let me know how you go

 

Measure = 
IF(
	ISFILTERED('TABLE2 - WORK DAYS'[Month]),
	DIVIDE(
		SUM('TABLE1-DATA'[Hours]),
		MAX('TABLE2 - WORK DAYS'[Working Days])
		),
		------ Grand Total Calc Here ------
		DIVIDE(
			CALCULATE(SUM('TABLE1-DATA'[Hours])),
			CALCULATE(SUM('TABLE2 - WORK DAYS'[Working Days])
			)
		)
 )

Here is the result I got

 

matrix.png

 


To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

View solution in original post

2 REPLIES 2
Phil_Seamark
Employee
Employee

Hi @connork

 

Please give this calculated measure a crack and let me know how you go

 

Measure = 
IF(
	ISFILTERED('TABLE2 - WORK DAYS'[Month]),
	DIVIDE(
		SUM('TABLE1-DATA'[Hours]),
		MAX('TABLE2 - WORK DAYS'[Working Days])
		),
		------ Grand Total Calc Here ------
		DIVIDE(
			CALCULATE(SUM('TABLE1-DATA'[Hours])),
			CALCULATE(SUM('TABLE2 - WORK DAYS'[Working Days])
			)
		)
 )

Here is the result I got

 

matrix.png

 


To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

Hi @Phil_Seamark,

 

Exactly what I needed - thanks!

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.