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.
Dear Community,
I'm currently building a cashflow statement and I'm having some difficulties with showing the balances per the first of each month. The balances at the end of each month gives no problems because I can use the YTD formula there. I've tried to do something with Startofmonth but I can't seem to get the right data. Just to get an idea of the fields I need to include. These are the formula's I used to get to the balances at the end of each month:
Solved! Go to Solution.
I'm really sorry, while I was posting this one other thought came to mind and that worked :). Offcourse, the balance at the beginning of each month is the ending balance of the previous month, so I just referred to the formula for the end of each month and added previous month, like this:
I'm really sorry, while I was posting this one other thought came to mind and that worked :). Offcourse, the balance at the beginning of each month is the ending balance of the previous month, so I just referred to the formula for the end of each month and added previous month, like this:
@DLU , Try a measure like
Calculate(SUMX(VALUES('Mapping Cashflow'[Calculating Sign]);SUMX(RELATEDTABLE('DWH');'DWH'[ACCOUNTINGCURRENCYAMOUNT]*'Mapping Cashflow'[Calculating Sign]));filter( 'Date', 'Date'[Date] = eomonth('Date'[Date],-1) +1))