Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hello gents,
I'm new to Power BI and have an issue regarding retreive/calculate period value (month).
The datatable looks like this:
The column day_balance is ending balance value for each period. I have tried with a Measure calculation but it doesn't summerize column total.
Actual Days Period = VAR __PREV_MONTH = CALCULATE([Actual Days]; DATEADD('Calendar'[Date]; -1; MONTH)) RETURN IF ( ISBLANK([Actual Days]); BLANK(); [Actual Days] - __PREV_MONTH)
How can I make a correct calculation period value based monthly "day_balance" value. Appreciate your assistance.
Solved! Go to Solution.
Hi @gselvag,
Please try this measure:
Actual Days Period =
VAR __PREV_MONTH =
CALCULATE (
[Actual Days],
FILTER (
ALLEXCEPT ( Table1, Table1[emp_no] ),
Table1[period].[Year] = YEAR ( MAX ( Table1[period] ) )
&& Table1[period].[MonthNo]
= MONTH ( MAX ( Table1[period] ) ) - 1
)
)
RETURN
IF ( ISBLANK ( [Actual Days] ), BLANK (), [Actual Days] - __PREV_MONTH )
Best regards,
Yuliana Gu
Hi @gselvag,
Please try this measure:
Actual Days Period =
VAR __PREV_MONTH =
CALCULATE (
[Actual Days],
FILTER (
ALLEXCEPT ( Table1, Table1[emp_no] ),
Table1[period].[Year] = YEAR ( MAX ( Table1[period] ) )
&& Table1[period].[MonthNo]
= MONTH ( MAX ( Table1[period] ) ) - 1
)
)
RETURN
IF ( ISBLANK ( [Actual Days] ), BLANK (), [Actual Days] - __PREV_MONTH )
Best regards,
Yuliana Gu
Your measure work like a charm!
Thank You Yuliana
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
104 | |
75 | |
46 | |
39 | |
33 |
User | Count |
---|---|
165 | |
90 | |
66 | |
46 | |
43 |