HI @Anonymous ,
Could you please share a bit more about your scenario?
Where do you use the SharePointIntegration.Selected.Status.Value formula within your app? Could you please share more details about the error message?
Could you please show more details about the "Status" field in your SP List? Do you enable "Allow Multiple selections" option for it?
1. If you do not enable "Allow Multiple selections" option for the "Status" field:
I have made a test on my side, and don't have the issue that you mentioned, The screeshot as below:
Set the Text property of the Label control to following:
SharePointIntegration.Selected.Status.Value
If above formula could not work, please consider take a try with the following formula:
LookUp('YourSPList', ID = SharePointIntegration.SelectedListItemID, Status.Value)
Or
LookUp('YourSPList', ID = SharePointIntegration.SelectedListItemID).Status.Value
2. If you enabled the "Allow Multiple selections" for the "Status" field:
If you have enabled the "Allow Multiple selections" for the "Status" field in your SP List, the SharePointIntegration.Selected.Status.Value formula would return a Table value rather than a Text value, so if you want to display the Choice column value within a Label control, pleasse take a try with the following formula (set the Text property of the Label control to following😞
Concat(SharePointIntegration.Selected.Status, Value & ";")
If above formula could not work, please take a try with the following formula:
Concat(LookUp('YourSPList', ID = SharePointIntegration.SelectedListItemID).Status, Value & ";")
Please take a try with above solution, then check if the issue is solved.
if the issue still exists, please consider remove the custom form from your SP list, then re-add anew one for it, then try above solution, check if the issue is fixed.
Best regards,