Hello.
I would like to have a SharePoint list reflect a number entered in a text box or selected item in a dropdown.
The data card on the form has radio buttons that can only display text boxes or dropdowns.
Within the card there is both a textbox and a dropdown with a label in it, and the text property contains the following code
If(IsBlank(Textbox1), Dropdown1.Selected.Value, Textbox1.Text)
Then, if I enter "label1" in the update property of the data card, it will show that the dropdown item "Error" cannot be converted to a numeric value.
The data type I want my SharePoint list to reflect is "one line of text", how can I improve this?