Hi Guys,
I have an App that pulls information from one SharePoint list (B) to update another SharePoint List (A) but when I add in a choices to the List (B) I am not able to pull the answer from the column that has choices answer. It works fine if the column is a single text column.
The working formula I am using in the Default Value of the DataCard Value is as follows, how do I get it to work with a Choices Column?
If(
Sign_In_Form.Mode = FormMode.Edit,
Parent.Default,
LookUp(
'Visitor Details',
Title = ComboBox1.Selected.Title,
Profession
)
)
Thanks
John.