Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowData Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more
By adding "-1" in below DAX formula, I get Last year comparative number for PL and BS. For PL, that is correct but for balance sheet I want year end number.
For example,
In slicers I select "start month 1 end month 4 start year 2023 end year 2023",
the results I get in matrix for comparative numbers PL YTD April 2022, Balance sheet 30th April 2022
Require to update DAX formula to get balance sheet 31st Dec 2022 instead of 30th april 2022.
Below is DAX formula used:
Hi @HKBros as you want to "deal" with dates, one of possible solution is to:
- create Calendar / Date ta ble, check link below.
- after that create measure for year end 2022
Measure test for Balance sheet 2022=
CALCULATE(
SUM('Combined Cubes'[Value]),
PLBS="PL", --change to your table / column accordingly
CALCULATETABLE (
ENDOFYEAR ( 'Date'[Date] ),--Date should be your Calendar / Date table with [Date] column, otherwise change accordingly
'Date'[Date] = DATE ( 2022, 3, 10 ) -- change year
)
)
Create Calendar Table Microsoft Learn
https://learn.microsoft.com/en-us/power-bi/guidance/model-date-tables
Proud to be a Super User!
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 6 | |
| 4 | |
| 3 | |
| 3 | |
| 3 |