Formula in Case

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • peterberlin
    Active Community Member
    • Mar 2015
    • 1004

    Formula in Case

    Hello,
    the code doesn't work:
    ifThen(teamsIds == '567ee18597f1689cb', lsung = 'Alles sehr OK.');

    and
    ifThen(teamsNames == 'Buchhaltung', lsung = 'Alles sehr OK.');

    I think there's a problem with the teams.
    peter
  • Maximus
    Senior Member
    • Nov 2018
    • 2731

    #2
    Hello.

    There is no bug. You should use this formula
    Code:
    ifThen(entity\hasLinkMultipleId('teams', '5cde74469540dc3fc'),
        description = 'abc'
    )

    Comment

    Working...