Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
joshua1990
Post Prodigy
Post Prodigy

Calculated 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() 

  • <10 Days = "1 Class"
  • >= 10 Days and 20 Days "2 Class"
  • >= 20 and < 100 Days "3 Class".

 

How would you do that? Using a SWITCH or IF?

1 ACCEPTED SOLUTION
AlexisOlson
Super User
Super User

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”
       )

View solution in original post

1 REPLY 1
AlexisOlson
Super User
Super User

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”
       )

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.