Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello!
I have a simple table that shows me in column [Date] the date for order creation.
Now I would like to add a calculated column that shows me the following information.
If [Date] - TODAY()
How would you do that? Using a SWITCH or IF?
Solved! Go to Solution.
SWITCH ( TRUE(), ... ) should do the trick nicely:
https://p3adaptive.com/2015/03/the-diabolical-genius-of-switch-true/
Example from the article:
[Rank Group]:=
SWITCH(
TRUE(),
[Overall Store Rank]<10,”Under 10″,
[Overall Store Rank]<20,”Under 20″,
[Overall Store Rank]<30,”Under 30″,
“Over 30”
)
SWITCH ( TRUE(), ... ) should do the trick nicely:
https://p3adaptive.com/2015/03/the-diabolical-genius-of-switch-true/
Example from the article:
[Rank Group]:=
SWITCH(
TRUE(),
[Overall Store Rank]<10,”Under 10″,
[Overall Store Rank]<20,”Under 20″,
[Overall Store Rank]<30,”Under 30″,
“Over 30”
)