I want a date picker to be visible only when the dropdown says "Closed". Here is the function I'm using: Visible=If(DataCardValue69 = "Closed",true)
What is missing?
Solved! Go to Solution.
Please confirm whether you are using a Dropdown or a ComboBox.
Are you using a dropdown control? If so, please change your formula to this.
If(DataCardValue69.SelectedText="Closed",true)
If you are using a ComboBox the formula will be something like this although I cannot confirm .Value is correct. You would need to look through the autocomplete options.
If(DataCardValue69.Selected.Value="Closed",true)
---
Please click "Accept as Solution" if my response helped to solve your issue so that others may find it more quickly. If your thought the post was helpful please give it a "Thumbs Up."
Please confirm whether you are using a Dropdown or a ComboBox.
Are you using a dropdown control? If so, please change your formula to this.
If(DataCardValue69.SelectedText="Closed",true)
If you are using a ComboBox the formula will be something like this although I cannot confirm .Value is correct. You would need to look through the autocomplete options.
If(DataCardValue69.Selected.Value="Closed",true)
---
Please click "Accept as Solution" if my response helped to solve your issue so that others may find it more quickly. If your thought the post was helpful please give it a "Thumbs Up."
Sorry, it is a combo box. It is working now.
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
Come together to explore latest innovations in code and application development—and gain insights from experts from around the world.
User | Count |
---|---|
207 | |
72 | |
51 | |
49 | |
20 |
User | Count |
---|---|
264 | |
123 | |
85 | |
79 | |
70 |