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'm very new to DAX and I'm getting quite a muddle with my DAX code below. What I want to achieve is the FinYear column to show Pre2000 if the date shown in 'dc1'[si_transactiondateofpayments is between 01/09/1900 and 31/08/2000, then show 2001/2002 if the date is between 01/09/2001 and 31/08/2002 and so on.
I know there should be an ELSE NULL type statement in there too (for those dates that don't fall into any of the parameters), but I'm well and truely stuck with the entire statement.
Solved! Go to Solution.
@jonclay Avoid TI functions if you can. You can do this easily with simple conditions. Also, use SWITCH TRUE instead of nested IF statements. And your DATE parameters are not correct and you want to use BLANK instead of NULL. Oh, and your quotes were wrong. Other than that, solid code. 🙂
FinYear =
SWITCH(TRUE(),
'dc1'[si_transactiondateofpayment] >= DATE(1900,1,9) &&
'dc1'[si_transactiondateofpayment] <= DATE(2000,8,31),"Pre 2000",
'dc1'[si_transactiondateofpayment] >= DATE(2001,1,9) &&
'dc1'[si_transactiondateofpayment] <= DATE(2002,8,31),"2001/2002",
BLANK()
)
You may find this helpful - https://community.powerbi.com/t5/Community-Blog/To-bleep-With-Time-Intelligence/ba-p/1260000
Also, see if my Time Intelligence the Hard Way provides a different way of accomplishing what you are going for.
https://community.powerbi.com/t5/Quick-Measures-Gallery/Time-Intelligence-quot-The-Hard-Way-quot-TIT...
Thanks so much for helping out. This now works perfectly!
Do not avoid TI (time-intel) functions but USE THEM IN THE RIGHT CONTEXT. Then you'll be safe.
@jonclay Avoid TI functions if you can. You can do this easily with simple conditions. Also, use SWITCH TRUE instead of nested IF statements. And your DATE parameters are not correct and you want to use BLANK instead of NULL. Oh, and your quotes were wrong. Other than that, solid code. 🙂
FinYear =
SWITCH(TRUE(),
'dc1'[si_transactiondateofpayment] >= DATE(1900,1,9) &&
'dc1'[si_transactiondateofpayment] <= DATE(2000,8,31),"Pre 2000",
'dc1'[si_transactiondateofpayment] >= DATE(2001,1,9) &&
'dc1'[si_transactiondateofpayment] <= DATE(2002,8,31),"2001/2002",
BLANK()
)
You may find this helpful - https://community.powerbi.com/t5/Community-Blog/To-bleep-With-Time-Intelligence/ba-p/1260000
Also, see if my Time Intelligence the Hard Way provides a different way of accomplishing what you are going for.
https://community.powerbi.com/t5/Quick-Measures-Gallery/Time-Intelligence-quot-The-Hard-Way-quot-TIT...
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.
User | Count |
---|---|
21 | |
18 | |
18 | |
15 | |
13 |
User | Count |
---|---|
42 | |
36 | |
23 | |
22 | |
17 |