I could have sworn I knew how to do this... but it isn't working and I'm not sure what I'm doing wrong.
I have two SharePoint single-select Choice columns on my Power Apps Edit Form.
All I want is for the 2nd choice column to auto-populate Yes or No, depending on what is selected in the 1st choice column.
For example:
1st: A, B, C
2nd: Yes, No
If A or B selected in 1st, 2nd should be No. If C is selected, 2nd should be Yes.
This is what I put in the 2nd choice column value's DefaultSelectedItems box:
If((DataCardValue34.Selected.Value = "A" || DataCardValue34.Selected.Value = "B", "No", "Yes")