Forum Discussion
joshua1990
Post Prodigy
4 years agoCalculated Column for Date Range
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() ...
- 4 years ago
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”
)
AlexisOlson
Super User
4 years agoSWITCH ( 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”
)