Hello,
I need assistance with displaying an error message when a value is selected in a dropdown.
The dropdown is datacardvalue2 and the values are "New Hire" and "Transfer/Promotion"
I want to display the error "Wrong form, please use the Transfer/Promotion form" if the value Transfer/Promotion is selected.
I am still learning Powerapps. I have tried the following in On Select for the dropdown:
If(DataCardValue2.Selected.Value = "Transfer/Promotion", " ","Incorrect form, Please return and use the Transfer/Promotion form")
How should I handle this?
Solved! Go to Solution.
Try:
If(DataCardValue2.Selected.Value = "Transfer/Promotion",
Notify("Incorrect form, Please return and use the Transfer/Promotion form"))
------------
If you like this post, give a Thumbs up. Where it solved your request, Mark it as a Solution to enable other users find it.
Try:
If(DataCardValue2.Selected.Value = "Transfer/Promotion",
Notify("Incorrect form, Please return and use the Transfer/Promotion form"))
------------
If you like this post, give a Thumbs up. Where it solved your request, Mark it as a Solution to enable other users find it.
I tried that an error message is still not displaying. I put it in the On Select for the dropdown.
Disregard my previous message. It is working now
User | Count |
---|---|
161 | |
86 | |
68 | |
63 | |
61 |
User | Count |
---|---|
212 | |
146 | |
92 | |
81 | |
68 |