Hi,
I want to do lookup on two fields - like below
AddColumns(
tmpcoll,
"isAvail",
If(
!IsBlank(
LookUp(
tmptbl,
'emp Id' = Result,
deptId = tmpDeptId,
'emp Id'
)
),
true,
false
)
);
Is there any alternative ways to achieve this? I want to add multiple columns based on some condition.
Thanks