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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Scholes
Frequent Visitor

Column (sub) total not correct from measure

Hello.

 

I have created a measure which shows the monhtly value between two dates, a start and an end date.

Scholes_0-1715001841440.png

 

Current Rev per monht = CALCULATE(
    SUM('Rev contract'[Rev per Month]),
    FILTER(CALCULATETABLE('Rev contract',ALL('Calendar')),
        'Rev Contract'[Start]<=MIN('Calendar'[Date])&&
        'Rev Contract'[End]>MIN('Calendar'[Date])
                ))

 

 

As you see the row calculation works but my matrix does not show a column grand total for summing up all the different periods/months.

What do I need to change to my measure?

 

Best regards,

 

 

 

 

3 REPLIES 3
Scholes
Frequent Visitor

@amitchandak 

Ok I managed to get annual totals by combining the SUMX funciton  

Rev per Month = 
SUMX(VALUES(Calendar[Month]),[Current Rev per month]
)

This works only on an annual level. Not for multiple years. I would expect the total for multiple years

 

Scholes_0-1715073393142.png

 

 

 

amitchandak
Super User
Super User

@Scholes , Try like

 

Current Rev per monht = CALCULATE(
SUM('Rev contract'[Rev per Month]),
FILTER(CALCULATETABLE('Rev contract',ALL('Calendar')),
'Rev Contract'[Start]<=Max('Calendar'[Date])&&
'Rev Contract'[End]>=MIN('Calendar'[Date])
))

@amitchandak 

Ok I changed the formula when I add year as a column I see now a total  but this total corresponds with the value of the first month, so there is no sum of the individual periods, same as the total value per year is not calculated.

 

Scholes_0-1715004823195.png

 

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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.