so to show just the way it should be written, I have a label, and 4 radio buttons.
in the following VISIBLE code if ANY of my radio buttons has not been selected the label will not appear
If(Or(IsBlank(Radio3.Selected.Value),IsBlank(Radio3_1.Selected.Value),IsBlank(Radio3_2.Selected.Value),IsBlank(Radio3_3.Selected.Value)),false,true)
in the following visible code if any of the 4 radio buttons has "Show" selected, my label will show
If(Or(Radio3.Selected.Value="Show",Radio3_1.Selected.Value="Show",Radio3_2.Selected.Value="Show",Radio3_3.Selected.Value="Show"),true,false)
hope this helps