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.
I am trying to map out fund balances overtime and I have the following formula:
My fund balances are not its own column rather it a measure. The thing that is holding it up is I want to have it calculate where it is differentiating by the year. So if the year is'21 it is using the beg '21 balance to calculate a rolling total based on date for that year. I guess my question is how can I combine the following three formulas:
@Anonymous , Assume you have fund balance column date wise of year start date wise
Then you can have a measure
calculate(firstnonblankvalue('Date'[Date], sum('Fund Balances'[Year Cash Balance])) , filter(all('Date'), 'Date'[Year] = max('Date'[Year]) ))
Else you need use Switch
Switch(Year(Max('Date'[Date])),
2022, 'Fund Balances'['22 Beginning Year Cash Balance]),
2021, 'Fund Balances'['21 Beginning Year Cash Balance]),
2020, 'Fund Balances'['20 Beginning Year Cash Balance])
)
Rest is what you are doing or follow
Power BI Inventory On Hand
Power BI Inventory On Hand: https://youtu.be/nKbJ9Cpb-Aw
User | Count |
---|---|
15 | |
9 | |
8 | |
6 | |
5 |
User | Count |
---|---|
31 | |
18 | |
15 | |
7 | |
5 |