I have a form that connects to a SharePoint list, and some of the DataCards are comboboxes with two text options. I'm trying to use two of them inside an If to display a warning if the combination is wrong. I have tried the following:
- DataCardValue3.Selected = "string", the error here is that I'd be trying to compare Record to String
- DataCardValue3.Selected.Value = "string", I believe this should work but it doesn't, not because of an error but because it says the selection is "empty", like nothing was selected yet but even when I select an option the warning doesn't show
- DataCardValue3.SelectedItems within a concat with "" as separator, this to extract the elements of the table that SelectedItems would get me, still came up empty
- DataCardValue3.Selected.NameOfColumn, this because a combobox can apparently have data from more than one column but since this is a form connected to sharepoint automatic field in my case it doesn't, and it just gives me an error. My "column name" appears to be Value, but see point two.
- DataCardValue3.Selected.Result, I've seen this in apps other people from my organization have made, it just gives me an error
I'd appreciate any guidance