Skip to main content

Notifications

Community site session details

Community site session details

Session Id :
Power Apps - Building Power Apps
Unanswered

Power App

(0) ShareShare
ReportReport
Posted on by 6
I would like to know if the input text >= 300 then show the result A if the input text >= 200 then show the result B if the input text >= 100 then show the result C if the input text >= 80 then show the result D to another box in Power App

Could you please suggest me ?
 
Categories:
  • mmbr1606 Profile Picture
    11,991 Super User 2025 Season 1 on at
    Power App
    hey
     
     
    you could also try this:
    If(
        Value(TextInput1.Text) >= 300, "A",
        Value(TextInput1.Text) >= 200, "B",
        Value(TextInput1.Text) >= 100, "C",
        Value(TextInput1.Text) >= 80, "D",
        "No Result"
    )
    
     
    if it worked please mark as verifies answers,
     
     
    cheers
  • realwillwright Profile Picture
    772 Super User 2025 Season 1 on at
    Power App
    Hi 
     
    To accomplish this you can use the Len and If functions
     
    If(
      Len(txtinput.value) >= 300,
      Result A,
      Len(txtinput.value) >= 200,
      Result B,
      Len(txtinput.value) >= 100,
      Result C,
      Len(txtinput.value) >= 80,
      Result D,
      Result E
    )
     

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

🌸 Community Spring Festival 2025 Challenge 🌸

WIN Power Platform Community Conference 2025 tickets!

Markus Franz – Community Spotlight

We are honored to recognize Markus Franz as our April 2025 Community…

Kudos to the March Top 10 Community Stars!

Thanks for all your good work in the Community!

Leaderboard

#1
WarrenBelz Profile Picture

WarrenBelz 146,524 Most Valuable Professional

#2
RandyHayes Profile Picture

RandyHayes 76,287 Super User 2024 Season 1

#3
Pstork1 Profile Picture

Pstork1 65,906 Most Valuable Professional

Leaderboard