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 / Set Condition for an a...
Power Apps
Unanswered

Set Condition for an answer

(0) ShareShare
ReportReport
Posted on by 27
Hi All, 
I would be pleased if I could get some help here. 
I created a form with 80 questions included, and each of them has its own "Not Meet Condition"
The fields <SLY>, <HLY>, <TJPY>, <ANY> and <EEY> are number fields, default value is blank;
<QuestionNumberLabel> is a dropdown list with the Question Number Listed;
 
For question 8, I want to show "Not Meet"
when <SLY>/ <HLY>/ <TJPY> / <ANY> /<EEY> are not blank (That means someone filled with value)
and the value of either one of them is <1. 
 
However, when I use this formula, it works only for <SLY> but not for the rest of the fields. 
Would you please let me know what is missing? I appreciate your help!
 
If(
(Value(QuestionNumberLabel.Selected.'Question Number') = 8 && (((!IsBlank(SLY.Text)) && Value(SLY.Text) <1) || ((!IsBlank(HLY.Text)) && Value(HLY.Text) <1) ||
((!IsBlank(TJPY.Text)) && Value(TJPY.Text) <1) ||
((!IsBlank(ANY.Text)) && Value(ANY.Text) <1) ||
((!IsBlank(EEY.Text)) && Value(EEY.Text) <1))),
"Not Meet", "Meet")
Categories:
I have the same question (0)
  • mmbr1606 Profile Picture
    14,615 Super User 2026 Season 1 on at

    hey @Quincy_Chan 

     

    can u try this:

    If(
     Value(QuestionNumberLabel.Selected.'Question Number') = 8 && 
     (
     (!IsBlank(SLY.Text) && Value(SLY.Text) < 1) || 
     (!IsBlank(HLY.Text) && Value(HLY.Text) < 1) || 
     (!IsBlank(TJPY.Text) && Value(TJPY.Text) < 1) || 
     (!IsBlank(ANY.Text) && Value(ANY.Text) < 1) || 
     (!IsBlank(EEY.Text) && Value(EEY.Text) < 1)
     ),
     "Not Meet",
     "Meet"
    )
    

     

    Let me know if my answer helped solving your issue.

    If it did please accept as solution and give it a thumbs up so we can help others in the community.



    Greetings

  • Quincy_Chan Profile Picture
    27 on at
    Thank for your prompt reply, but it is not working.
  • mmbr1606 Profile Picture
    14,615 Super User 2026 Season 1 on at

    do you recieve any error msg? if yes please share what it says

  • Quincy_Chan Profile Picture
    27 on at

    Hi @mmbr1606 

    No, but I expected that when I input value "2" in <HLY>, the result should be "Meet", not it works only for <SLY>

  • mmbr1606 Profile Picture
    14,615 Super User 2026 Season 1 on at

    can u try this approach:

    If(
     Value(QuestionNumberLabel.Selected.'Question Number') = 8 && 
     (
     (!IsBlank(SLY.Text) && Value(SLY.Text) < 1) || 
     (!IsBlank(HLY.Text) && Value(HLY.Text) < 1) || 
     (!IsBlank(TJPY.Text) && Value(TJPY.Text) < 1) || 
     (!IsBlank(ANY.Text) && Value(ANY.Text) < 1) || 
     (!IsBlank(EEY.Text) && Value(EEY.Text) < 1)
     ),
     "Not Meet",
     "Meet"
    )
    

     

    Let me know if my answer helped solving your issue.

    If it did please accept as solution and give it a thumbs up so we can help others in the community.



    Greetings

  • Quincy_Chan Profile Picture
    27 on at

    Unfortunately, it is still not working 😞

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!

Leaderboard > Power Apps

#1
wolenberg_ Profile Picture

wolenberg_ 119 Super User 2026 Season 1

#2
WarrenBelz Profile Picture

WarrenBelz 107 Most Valuable Professional

#3
Haque Profile Picture

Haque 103

Last 30 days Overall leaderboard