Hi, i have a couple of questions regarding an app that i am building for a class.
First off, i have a Radio button with the question "Are you visiting for more than 1 day?" with "Yes" or "No" as the possible values.
If "No" is selected, DatePicker1 becomes visible. It is currently set up like this:
If(Radio1.Selected.Value = "No"; true; false)
If "Yes" is selected, i would still like for DatePicker1 to become visible (so it becomes visible if either option is chosen), as well as another DatePicker(2) - i understand how to make them visible if either Yes or No is chosen, but how can i make DatePicker1 show up either way?
If there is a better way to make a "From date / To date" setup, any help is appreciated.
Question 2:
I am using a Patch function to save the input from a number of questions, but as i have two DatePickers in the app, both dates are being saved, even though only one of them is visible.
Is it possible to make the field in DatePicker2 blank whenever it is not visible?
I hope the questions make sense, and thanks in advance