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 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:
I have the same question (0)
  • realwillwright Profile Picture
    772 Moderator on at
    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
    )
     

  • mmbr1606 Profile Picture
    14,629 Super User 2026 Season 1 on at
    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

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

Season of Sharing Community Challenge Winners!

Congratulations to our community stars!

Kudos to our 2025 Community Spotlight Honorees

Expanding mentorship, skilling, and AI innovation

Congratulations to the June Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 326 Most Valuable Professional

#2
11manish Profile Picture

11manish 168

#3
sannavajjala87 Profile Picture

sannavajjala87 75 Super User 2026 Season 1

Last 30 days Overall leaderboard