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

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
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