Re: How to hide forms based on radio button?
Hi @FShaw19,
Could you please share a bit more about your scenario?
Do you want to hide a field data card within your View Form if the field value is blank?
I agree with @AndySid 's thought almost. I have made a test on my side, please take a try with the following workaround:
Within your View Form, set the Visible property of the corresponding Data card control to following:
If(IsBlank(ThisItem.ColumnName), false, true)
In addition, if you want to hide a field (Data card) within your View Form based on Radio button control, please take a try with the following formula:
Set the Visible property of the Data card control to following:
If(Radio1.Selected.Value = "A specific value", false, true)
Best regards,