Greetings.
I have the following collection:
ClearCollect(
colValidaciones,
GroupBy(
ValidacionConocimientos_1,"Identificador",
"Data"
)
)
This generates a collection with 2 fields, the identifier field and the data field, which is a table type and is where the data that interests me is.

I was using the code:
First(First(colValidaciones).Data).Evaluator
to show the data that I was interested in that is inside data but then I realized that it didn't work for me since it always shows the same data. And try something like:
LookUp(colValidations, Identifier = ThisItem.Identifier).Data.Evaluator
but it gives an error. What would be the correct way to achieve what I need?