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”
)
Come together to explore latest innovations in code and application development—and gain insights from experts from around the world.
Put your data visualization and design skills to the test! This exciting challenge is happening now through May 31st!
User | Count |
---|---|
141 | |
70 | |
34 | |
29 | |
25 |
User | Count |
---|---|
141 | |
81 | |
44 | |
39 | |
23 |