Hello I'm kind of stomped on a feature that I would like to put in my application.
I made a Checklist App. My app has a gallery for a form, right now for all questions in the gallery users have to select radio choice "Complete" or "Uncomplete" to submit the form.
But now I would like for users that select "Uncomplete" have to note down (text input) the reason as to why that task is "Uncomplete".
This is my code for Submit Button display mode:
If(
CountRows(
Filter(
QuestionsGal1.AllItems,
QuestionChoice.Selected.Value = Blank()
)
) = 0,
DisplayMode.Edit,
DisplayMode.Disabled
)