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
Anonymous
Not applicable

Matrix

I have a table:

 

1/31/2019 --- 5.00  --- Washington

1/31/2019 --- 6.00 --- California

1/31/2019 --- 7.00 --- Oregon

1/31/2019 --- 10.00 --- Mexico

3/31/2019 --- 6.00  --- Washington

3/31/2019 --- 7.00 --- California

3/31/2019 --- 8.00 --- Oregon

3/31/2019 --- 9.00 --- Mexico

12/31/2019 --- 8.00  --- Washington

12/31/2019 --- 9.00 --- California

12/31/2019 --- 10.00 --- Oregon

12/31/2019 --- 11.00 --- Mexico

 

And i am trying to get the variance (YearEnd-MonthEnd) and show it in a matrix.  Would you be able to assist?

 

Here is how it should look like:

                                     1/31/2019               12/31/2019

Washington                      3                                 0

California                          3                                 0

Oregon                             3                                 0

Mexico                             3                                  0

 

I created a new query and tried to merge and append the 2 queries but the matrix ends up summarizing the yearend data which is not correct.   Thank you for your help.

3 ACCEPTED SOLUTIONS
v-frfei-msft
Community Support
Community Support

Hi @Anonymous ,

 

To create a measure as below.

 

Measure 2 = 
CALCULATE (
    SUM ( 'Table'[time] ),
    FILTER ( ALL ( 'Table' ), 'Table'[date] = ENDOFYEAR ( 'Table'[date] ) ),
    VALUES ( 'Table'[City] )
)
    - CALCULATE ( SUM ( 'Table'[time] ) )

Capture.PNG

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

View solution in original post

Anonymous
Not applicable

Hi 

 

 

View solution in original post

Anonymous
Not applicable

Hi  

 

SUM(GoalVariance[ShareBalance])/CALCULATE( SUM (GoalVariance[GoalValue]), FILTER (ALL (GoalVariance), GoalVariance[MonthEndDate] = ENDOFYEAR (GoalVariance[MonthEndDate])), VALUES (GoalVariance[AcctBranchName]))
 
I cannot thank you enough.  This is the last piece i am working on before taking a 3 week vacation on the 4th!!!  Thank you thank you thank you again
 
Glen

View solution in original post

3 REPLIES 3
v-frfei-msft
Community Support
Community Support

Hi @Anonymous ,

 

To create a measure as below.

 

Measure 2 = 
CALCULATE (
    SUM ( 'Table'[time] ),
    FILTER ( ALL ( 'Table' ), 'Table'[date] = ENDOFYEAR ( 'Table'[date] ) ),
    VALUES ( 'Table'[City] )
)
    - CALCULATE ( SUM ( 'Table'[time] ) )

Capture.PNG

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.
Anonymous
Not applicable

Hi  

 

SUM(GoalVariance[ShareBalance])/CALCULATE( SUM (GoalVariance[GoalValue]), FILTER (ALL (GoalVariance), GoalVariance[MonthEndDate] = ENDOFYEAR (GoalVariance[MonthEndDate])), VALUES (GoalVariance[AcctBranchName]))
 
I cannot thank you enough.  This is the last piece i am working on before taking a 3 week vacation on the 4th!!!  Thank you thank you thank you again
 
Glen
Anonymous
Not applicable

Hi 

 

 

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.

Top Solution Authors
Top Kudoed Authors