I'm trying to do a switch (but open to other methods!) on a radio with two options, "Disposed" or "Move", basically:
If DataCardValue126 is filled in select "Disposed"
If DataCardValue127 is filled in, select "Move"
If both are blank, do not select either (be blank).
I'm trying the below but it's not working.
Switch(Radio1.Selected.Value,!IsBlank(DataCardValue126.Text),"Disposed",!IsBlank(DataCardValue127.SelectedDate),"Move","")