Announcement

Collapse
No announcement yet.

Please help by formula

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Please help by formula

    Hi,

    This code does not work. Field briefanrede is a text field.

    ifThenElse(briefanrede == null,
    ifThenElse(salutationName == 'Herr', briefanrede= 'Sehr geehrter Herr ');
    ifThenElse(salutationName == 'Frau', briefanrede= 'Sehr geehrte Frau ');
    ifThenElse(salutationName == 'Herr Dr.', briefanrede= 'Sehr geehrter Herr Dr. ');
    ifThenElse(salutationName == 'Frau Dr.', briefanrede= 'Sehr geehrte Frau Dr. ');
    );

    Without the first function, of course.
    peter

  • #2
    Hello
    not sure, but here is my thoughts
    1) briefanrede == null => briefanrede == null || briefanrede == ''
    2) salutationName == 'Frau'... => you need to use the key value, not the translation

    Comment


    • #3
      thank you.

      Comment

      Working...
      X