Hi guys,
For below code, I am getting this error. colSPOPDBalanceHistory and colSPEmployee are created collections.
ClearCollect(
colUsageHistorySummery,
AddColumns(
colSPOPDBalanceHistory,
"EmployeeName",LookUp(colSPEmployee,EmployeeID = colSPOPDBalanceHistory[@EmployeeID],EmployeeName),
"Grade",LookUp(colSPEmployee,EmployeeID = colSPOPDBalanceHistory[@EmployeeID],Grade),
"OPDCategory",LookUp(colSPEmployee,EmployeeID = colSPOPDBalanceHistory[@EmployeeID],OPDCategory.Value)));
I didn't get what is the issue inside of this code.
Thanks