Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
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!
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 57 | |
| 40 | |
| 36 | |
| 19 | |
| 18 |
| User | Count |
|---|---|
| 70 | |
| 69 | |
| 38 | |
| 35 | |
| 23 |