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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
Anonymous
Not applicable

Running total problems

Can anyone explain this?

image.pngYou can see the values from the start of the month is all there, but yet it does not calculate the running total until half of the month?????

1 ACCEPTED SOLUTION
v-juanli-msft
Community Support
Community Support

Hi @Anonymous

I can't reproduce your problem, could you show me how do you calculate the measure "Budget Utilised hours"?

Alternatively, could you apply the measure and see if it works

Budget Utilised hours running total in Date=
CALCULATE(
           [Budget Utilised hours],
            FILTER(
                     ALLSELECTED(Date[Date]),
                     [Date]<=MAX([Date])
                  )
)

Best Regards

Maggie

View solution in original post

3 REPLIES 3
v-juanli-msft
Community Support
Community Support

Hi @Anonymous

I can't reproduce your problem, could you show me how do you calculate the measure "Budget Utilised hours"?

Alternatively, could you apply the measure and see if it works

Budget Utilised hours running total in Date=
CALCULATE(
           [Budget Utilised hours],
            FILTER(
                     ALLSELECTED(Date[Date]),
                     [Date]<=MAX([Date])
                  )
)

Best Regards

Maggie

Anonymous
Not applicable

Thank you very much Maggie, this worked.

v-juanli-msft
Community Support
Community Support

Hi @Anonymous

How about the result using the following measure

CALCULATE(
         [Budget Utilised hours],
         FILTER(
                  ALLSELECTED(‘Date’[Date]),
                  ‘Date’[Date]<=MAX(‘Date’[Date])
           )
   )

Best regards

Maggie

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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