web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Apps / Switch function: Is it...
Power Apps
Answered

Switch function: Is it possible to have a match value equal to a date range.

(0) ShareShare
ReportReport
Posted on by Microsoft Employee

Hello, I have never used Switch function before. For the sake of explanation, I have simplified the formula.

 

Switch(MyVariableName, DateAdd(Now(),-30,Months), "Inactive","Active" )

 

The code works, but the DateAdd(Now(), -30, Months) returns a value of the specific date 30 months ago.

Is there a way with the switch function to implement code like the if statement? I would use <=Today() for an IF statement. I cannot use it with the Switch function.

 

Example(Switch(MyVariableName, <=Today(), "Inactive","Active" ) gives an error.

Categories:
I have the same question (0)
  • Verified answer
    Pstork1 Profile Picture
    69,125 Most Valuable Professional on at

    Unfortunately, No.  Switch can only be used to check equals with a case sensitive value.  

  • Community Power Platform Member Profile Picture
    Microsoft Employee on at

    Thank You!

  • Ensemble Profile Picture
    5 on at

    You can get a similar functionality with a switch statement like so...

    Switch(true,
         ThisItem.Date > Now(),
         "Future",

         ThisItem.Date = Now(),
         "Today",

         ThisItem.Date < Now(),
         "Past"
    )

    A switch statement can only match a single value. This works by matching the value 'true' to the output of the conditions. Hope this helps.

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Users!

Kudos to our 2025 Community Spotlight Honorees

Congratulations to our 2025 community superstars!

Congratulations to the March Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
11manish Profile Picture

11manish 505

#2
WarrenBelz Profile Picture

WarrenBelz 502 Most Valuable Professional

#3
Haque Profile Picture

Haque 324

Last 30 days Overall leaderboard