-
Notifications
You must be signed in to change notification settings - Fork 266
Description
I am running the solution as-is.
I am not getting the main screen displaying all results (i.e. age is blank), and when you click the ">" it only displays one property for region.
It appears to be this
_values: MatchAll(
ThisItem.Result,
"{""Choices"":""(?[^""])"",""ColumnType"":""(?[^""])"",""Data"":""(?[^""])"",""Required"":""(?[^""])"",""Title"":""(?<Title>[^""]*)"""
)
},
My results looks like this (below) and only has one object that has Choices - so its only matching on one object. Is there a way to either force it grab all entries regardless if there is a choice string, or force the results to always include an empty choices? Great examples!
[
{
"ColumnType": "Text",
"Data": "Bob",
"Required": "Yes",
"Title": "Name"
},
{
"ColumnType": "Number",
"Data": "22",
"Required": "No",
"Title": "Age"
},
{
"ColumnType": "Yes/No",
"Data": "true",
"Required": "No",
"Title": "Enrolled"
},
{
"ColumnType": "Date",
"Data": "4/12/2023",
"Required": "Yes",
"Title": "Enrolled Date"
},
{
"Choices": "North;South;East;West",
"ColumnType": "Choice",
"Data": "North",
"Required": "Yes",
"Title": "Region"
},
{
"ColumnType": "Text",
"Data": "bob@contoso.com",
"Required": "No",
"Title": "Email"
}
]