Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello,
I need some help with following issue. I have GL entry table with GL No, Amount, Posting Date and Index.
I also have calendar table where I have unique dates.
Based on two tables I created measure which helps me to represent balance sheet data per periods:
Hi @Tatmel ,
You could use VAR to define your filter at first.
And you could check if your Power BI is 64-bit version.
Make sure that no other software that consumes too much memory runs at the same time while running Power BI.
Hi @v-eachen-msft ,
I have 64bit version of PBI installed on my PC.
Can you please show how new measure will look like by using VAR?
Current measure looks like this:
Hi @Tatmel ,
You could refer to the following measure.
Balance =
VAR a =
SUM ( QGLEntry[Amount] )
VAR b =
DATESBETWEEN (
'calendar'[Calendar Days];
DATE ( 1950; 01; 01 );
ENDOFMONTH ( 'calendar'[Calendar Days] )
)
RETURN
CALCULATE ( a; b )
Hi @v-eachen-msft ,
I've tested your measure and noticed that it gave different result compare with initial measure I've used in my calculations.
When I added to my pbix I got negative balance for fixed assets which couldnt be possible.