Best I can do to explain. PA1 shows the drop down multi-select box in PowerApps. PA2 shows what happens if I select any one of the three choices, I only see one date box show. PA3 (I manipulated the image to make is show what I want) shows how I would like it to display, allowing multiple sections and making visible the date boxes accordingly. Basically I need to put a date to each of the items selected. And the user can select any or all of the items. I have each date box setup with the code:
visible=If(DataCardValue13_1.Selected.Value="Symptomatic", true, false)
visible=If(DataCardValue13_1.Selected.Value="Tested Positive", true, false)
visible=If(DataCardValue13_1.Selected.Value="Close Contact", true, false)
I believe I need a AND OR formula here but not sure how to make it work.
DataCardValue13_1 is the report type data value (multi-select drop down menu).
Thanks!