March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi All,
I have run into a problem I cannot resolve. I have set of dates, Target and Actual numbers in a table. I need to calculate the cumulative total for each day of the month. The logic appears to be simple enough, but it doesn't work. Here is the data:
DATE TARGET ACTUAL RT_mnth st_day_mnth last_day_mnth
1/1/2023 | 27 | 38 | 38 | 1/1/2023 | 1/31/2023 |
1/2/2023 | 39 | 20 | 20 | 1/1/2023 | 1/31/2023 |
1/3/2023 | 26 | 37 | 37 | 1/1/2023 | 1/31/2023 |
1/4/2023 | 36 | 24 | 24 | 1/1/2023 | 1/31/2023 |
1/5/2023 | 18 | 23 | 23 | 1/1/2023 | 1/31/2023 |
1/6/2023 | 23 | 19 | 19 | 1/1/2023 | 1/31/2023 |
1/7/2023 | 14 | 23 | 23 | 1/1/2023 | 1/31/2023 |
1/8/2023 | 36 | 10 | 10 | 1/1/2023 | 1/31/2023 |
1/9/2023 | 14 | 40 | 40 | 1/1/2023 | 1/31/2023 |
1/10/2023 | 10 | 12 | 12 | 1/1/2023 | 1/31/2023 |
1/11/2023 | 36 | 25 | 25 | 1/1/2023 | 1/31/2023 |
1/12/2023 | 20 | 20 | 20 | 1/1/2023 | 1/31/2023 |
1/13/2023 | 10 | 37 | 37 | 1/1/2023 | 1/31/2023 |
1/14/2023 | 36 | 10 | 10 | 1/1/2023 | 1/31/2023 |
1/15/2023 | 40 | 29 | 29 | 1/1/2023 | 1/31/2023 |
'st_day_mnth' and 'last_day_mnth' are calculate measures from DATE. 'RT_mnth' is the cumulative total of ACTUAL column and has the following expression:
Solved! Go to Solution.
@kkanda
Use this measure:
RT_mnth =
VAR __StartDate =
EOMONTH ( MAX ( TestSh[DATE] ), -1 ) + 1
VAR __LastDate =
MAX ( TestSh[DATE] )
RETURN
CALCULATE (
SUM ( TestSh[ACTUAL] ),
TestSh[DATE] >= __StartDate,
TestSh[DATE] <= __LastDate
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Thank you @Fowmy... it worked. I tried STARTOFMONTH function for __startDate. That has worked also.
@kkanda
Use this measure:
RT_mnth =
VAR __StartDate =
EOMONTH ( MAX ( TestSh[DATE] ), -1 ) + 1
VAR __LastDate =
MAX ( TestSh[DATE] )
RETURN
CALCULATE (
SUM ( TestSh[ACTUAL] ),
TestSh[DATE] >= __StartDate,
TestSh[DATE] <= __LastDate
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
123 | |
85 | |
85 | |
70 | |
51 |
User | Count |
---|---|
205 | |
157 | |
97 | |
79 | |
69 |