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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
HKBros
New Member

How to get Balance sheet comparative number at year end instead of actual month end

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:

LY Amount in AED = var figure = [AEDin] var startYR=[Start Year]-1 var endYr=[End Year]-1 var startMT=[Start Month] var endMt=[End Month] var PLBS= [BS/PL] return if(PLBS="PL", CALCULATE(SUM('Combined Cubes'[Value]),'Date Master'[Date]>=date(startYR,startMT,1),'Date Master'[Date]<=EOMONTH(date(endYr,endMt,1),0)), CALCULATE(SUM('Combined Cubes'[Value]),'Date Master'[Date]>=date(2022,1,1),'Date Master'[Date]<=EOMONTH(date(endYr,endMt,1),0)))/figure
1 REPLY 1
some_bih
Super User
Super User

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





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!






Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

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