I am trying to add a new column as a look up column and store it in a local collection. I plan to use the new column as a column for the data table control.
I have noticed that normally without lookup, i.e. just some formatting added like formatting new column to add date format or currency format works. But whenever I use the lookup formula within add columns, the collection does not show any columns within it.
I am using the below expression to create the collection:
ClearCollect(tempCollection,
AddColumns(
'[dbo].[Category]',
"Observers",LookUp('[dbo].[Observers]',LOGIN_ID = OBS_LOGIN_ID,Concatenate(LAST_NAME,", ",FIRST_NAME))))