Hi,
I am loading a record into collection using below code. I want to loop through the columns and perform some action if column value is "No".
Set(varUser, User().Email);
ClearCollect(myCollection,LookUp(tblStaff,Email = varUser));
Thanks
Suji
Solved! Go to Solution.
Hi, you can't loop through column values, you have to specify a check for each of the columns
like:
ForAll(myCollection,
If(Column1 = "No" Or Column2 = "No" Or Column3 = "No",
DoSomething
)
)
@iAm_ManCat |
Please 'Mark as Solution' if someone's post answered your question and always 'Thumbs Up' the posts you like or that helped you! |
Thanks! |
Hi, you can't loop through column values, you have to specify a check for each of the columns
like:
ForAll(myCollection,
If(Column1 = "No" Or Column2 = "No" Or Column3 = "No",
DoSomething
)
)
@iAm_ManCat |
Please 'Mark as Solution' if someone's post answered your question and always 'Thumbs Up' the posts you like or that helped you! |
Thanks! |
User | Count |
---|---|
262 | |
110 | |
92 | |
54 | |
43 |