Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I have this statement that uses a range of possible data so I dont believe i can just use a switch and im having major issues getting my head around it.
CASE WHEN JobLoggedDate > DATEADD(day, -7, GETDATE()) THEN '< 1 Week' WHEN JobLoggedDate <= DATEADD(day, -7, GETDATE()) AND JobLoggedDate > DATEADD(month, -1, GETDATE()) THEN '1 Week - 1 Month' WHEN JobLoggedDate <= DATEADD(month, -1, GETDATE()) AND JobLoggedDate > DATEADD(month, -3, GETDATE()) THEN '1 Month - 3 Months' ELSE '> 3 Months' END AS 'AgeRange'
How do i translate this to DAX so i can set a new column in a set of returned data to use this logic?
Solved! Go to Solution.
Hi @AlexCassin
Try this formula to create a calculated column
'AgeRange' = SWITCH ( TRUE (), [JobLoggedDate] > TODAY () - 7, "< 1 Week", [JobLoggedDate] <= TODAY () - 7 && [JobLoggedDate] > DATE ( YEAR ( TODAY () ), MONTH ( TODAY () ) - 1, DAY ( TODAY () ) ), "1 Week - 1 Month", [JobLoggedDate] <= DATE ( YEAR ( TODAY () ), MONTH ( TODAY () ) - 1, DAY ( TODAY () ) ) && [JobLoggedDate] > DATE ( YEAR ( TODAY () ), MONTH ( TODAY () ) - 3, DAY ( TODAY () ) ), "1 Month - 3 Months", "1 Month - 3 Months" )
Here is my test pbix
Best Regards
Maggie
Hi @AlexCassin
Try this formula to create a calculated column
'AgeRange' = SWITCH ( TRUE (), [JobLoggedDate] > TODAY () - 7, "< 1 Week", [JobLoggedDate] <= TODAY () - 7 && [JobLoggedDate] > DATE ( YEAR ( TODAY () ), MONTH ( TODAY () ) - 1, DAY ( TODAY () ) ), "1 Week - 1 Month", [JobLoggedDate] <= DATE ( YEAR ( TODAY () ), MONTH ( TODAY () ) - 1, DAY ( TODAY () ) ) && [JobLoggedDate] > DATE ( YEAR ( TODAY () ), MONTH ( TODAY () ) - 3, DAY ( TODAY () ) ), "1 Month - 3 Months", "1 Month - 3 Months" )
Here is my test pbix
Best Regards
Maggie
Worked like a charm! Except 1 issue, you had put down the default to "1 Month - 3 Months" instead of the "> 3 Months" I had but only a small issue 🙂 Just thought id let you know!
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
70 | |
68 | |
43 | |
34 | |
26 |
User | Count |
---|---|
88 | |
52 | |
45 | |
39 | |
38 |