Hi,
i got a formula and want to set a field but only if the User who modified the data is member of a specefic team.
I wrote the following:
(IfThen funktion is part of bigger IrThen)
But this does not work.
How i can check if modifiedBy User is member of a Team?
Jens
i got a formula and want to set a field but only if the User who modified the data is member of a specefic team.
I wrote the following:
Code:
ifThen(
status == 'approved' && intstatus == 'certified' && cncertifieruid != modifiedBy.userName && modifiedBy.teamsNames == 'Teamleader',
cnapprover = string\concatenate(modifiedBy.firstName, " ",modifiedBy.lastName);
intstatus = 'certified';
message = 'Approved by Teamleader.';
cnapproverdatetime = datetime\now();
cnapproveruid = modifiedBy.userName
),
But this does not work.
How i can check if modifiedBy User is member of a Team?
Jens

Comment