The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi everyone
I have a calculated column that works out the total of various financial transactions between dates. This is shown below and is working fine:
I then need another column that works out the same figures but for 1 year earlier and to-date (i.e. upto today but 1 year ago). I've therefore changed the formula to show TODAY()-365) but I'm getting an error.
Solved! Go to Solution.
@jonclay ,
You can write the DAX as below:
PrevYr_Total_NEW_P3_DC3 =
VAR PrevYearDay = TODAY()-365
RETURN
IF ( TR_3_DC3_Burs[pledges.sic_pledgedate] >= DATE ( 2021, 9, 1)
&& TR_3_DC3_Burs[pledges.sic_pledgedate] < PrevYearDay
&& TR_3_DC3_Burs[statuscodename] = "Paid"
&& TR_3_DC3_Burs[si_transactiondateofpayment] >= DATE ( 2021, 9, 1 )
&& TR_3_DC3_Burs[si_transactiondateofpayment] <= PrevYearDay,
( TR_3_DC3_Burs[sic_dc3totalincgiftaid] ))
Hope this works. Let me know if this didn't work.
Hi @rajulshah
Thank you for helping me out with this - it works perfectly! Apologies for the delayed response but I've been away from work for a while.
Best wishes
Jon
@jonclay ,
You can write the DAX as below:
PrevYr_Total_NEW_P3_DC3 =
VAR PrevYearDay = TODAY()-365
RETURN
IF ( TR_3_DC3_Burs[pledges.sic_pledgedate] >= DATE ( 2021, 9, 1)
&& TR_3_DC3_Burs[pledges.sic_pledgedate] < PrevYearDay
&& TR_3_DC3_Burs[statuscodename] = "Paid"
&& TR_3_DC3_Burs[si_transactiondateofpayment] >= DATE ( 2021, 9, 1 )
&& TR_3_DC3_Burs[si_transactiondateofpayment] <= PrevYearDay,
( TR_3_DC3_Burs[sic_dc3totalincgiftaid] ))
Hope this works. Let me know if this didn't work.
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
108 | |
82 | |
77 | |
46 | |
39 |
User | Count |
---|---|
137 | |
108 | |
69 | |
64 | |
53 |