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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric 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
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

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