Solved
Index Function
Hi Experts,
How to use Index Function to extract whole row data from a list of records based on one record field value?

We want to extract one row data from local! data where one fieldname : id has a value: 100051
Hi Experts,
How to use Index Function to extract whole row data from a list of records based on one record field value?

We want to extract one row data from local! data where one fieldname : id has a value: 100051
To get a single item you can just use the displayvalue function.
a!localVariables(
local!data: {
a!map(id: 7, name: "Max"),
a!map(id: 42, name: "Otto"),
a!map(id: 100, name: "Joe"),
},
displayvalue(
42,
local!data.id,
local!data,
null
)
)Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.