Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request 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”
)
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 5 | |
| 5 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 16 | |
| 8 | |
| 7 | |
| 7 |