I am trying to create a collection which is taking 3 columns from my SharePoint List,
I want a column which contains text, one that contains a choice and the 3rd is the default user email,
I am using the following
ClearCollect(colChoices,ShowColumns(CLUserRoles,Email,GRS,AppRole))
I capture all the data but have 2 problems, 1 the AppRole column is a choice field and just displays [Record] in all the rows and not the actual data, 2 i capture all the records and not just the ones for the user.
I've played with,
'Created By'.Email=User().Email
But not sure where it fits within the code.
Cheers