Hello,
I am building a quality assurance form in PA and I have a list of possible errors that one may make. What I want to do is build a hidden field that shows either 'correct' or 'incorrect' if any of the list items of errors is selected. I'm sure that this would be pretty easy, but I just cannot think of how to do it right now - but if anyone has any suggestions - all ears. Currently, I have a hidden field that just counts the number of errors.... but I want to have something that if even one error is counted, it's 'incorrect', but if no errors are counted - then obviously it's 'correct'
Solved! Go to Solution.
You could simply do something like: If(Value(ErrorLabel.Text) > 0 , "Incorrect", "Correct")
Or update your current label by wrapping the If() statement around the existing statement:
If([your existing statement] > 0 , "Incorrect", "Correct")
You could simply do something like: If(Value(ErrorLabel.Text) > 0 , "Incorrect", "Correct")
Or update your current label by wrapping the If() statement around the existing statement:
If([your existing statement] > 0 , "Incorrect", "Correct")
This worked!!
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
User | Count |
---|---|
185 | |
53 | |
41 | |
36 | |
31 |
User | Count |
---|---|
240 | |
74 | |
71 | |
69 | |
65 |