
Hello Great people,
I am getting this error and I have no idea what is going on.
This is the line I am trying to modify.
ThisItem.Category_x002e_.Value
I posted screenshoots too.
This is the only part of the app that contains an error. I already tried to use <> and also '. But then i get other kind of error.
Hi @magbest,
Which column does the CreateTicketFromCategory Data card connect to within your Edit form?
Does the CreateTicketFromCategory Data card connect to a Choice type column?
The error message seems to tell that the Default proeprty of the CreateTicketFromCategory Data card is required to provide a record value, but the ThisItem.Category_x002e_.Value formula returns a Text string value.
I assume that the CreateTicketFromCategory Data card connected to a Choice type column in your data source (a SP list), please modify the formula within the Default proeprty of the CreateTicketFromCategory Data card to following:
{
'@odata.type':"#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference",
Value: ThisItem.Category_x002e_.Value
}
Or
{
Value: ThisItem.Category_x002e_.Value
}
then check if the issue is solved.
Best regards,
Kris