Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Hi Folks,
I've had this issue for days and can't resolve it, have searched and posted in a couple of places. So instead of specifying my problem with code I've used. I'll try to explain what I'm trying to do and hope to get some hints!
So I have the following data model for a persoanl finance dashboard. Linking Transactions, Date, Categories and Budget table
And, the dashboard looks like this..
I want to be able to do the following..
When I click on the FY button, the last transaction date for that financial year will be displayed (so for FY23 its currenlty May 08 2023)
So If I were to click FY 22, that date would be the last transaction date in FY22 (which happens to be June 30 2022)
The table shows the categories and I'm trying to work out the "Current month spend" for each category for the most recent month in which ever FY I click..
So for FY23, I would want to see for each category the sum of all transactions in MAY FY23 only
For FY22, because the last transaction date is in JUNE, then I would expect to see the sum of all transactions in JUN FY22 only
I have tried EVERYTHING that I can think of.... I nearly have it... the problem I have is If there is a category that does not have a transaction in MAY FY23, then the total shown is for APR FY23 (The "Kids activities" shown in the table above is an example of this)
I realise it's a context thing, but I have no idea how to fix this - hoping for some tips or even blog posts to read up on.
Thanks folks!
Asha
Add a column to your date table called Today or Before which returns true if the date <= TODAY(), then you can try
Current month spend =
VAR ReferenceDate =
CALCULATE ( MAX ( 'Date'[Month number] ), 'Date'[Today or before] = TRUE () )
VAR Result =
CALCULATE (
SUM ( 'Transactions'[Amount] ),
'Date'[Month number] = ReferenceDate
)
RETURN
Result
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
21 | |
21 | |
19 | |
13 | |
12 |
User | Count |
---|---|
42 | |
28 | |
23 | |
22 | |
22 |