Announcement

Collapse
No announcement yet.

Formula !=

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

  • Formula !=

    hello
    I want to check a enum field with formula if it is empty.
    fieldname != null
    does not work
    Version 5.1.2
    peter
    Last edited by peterberlin; 04-13-2018, 06:50 AM.

  • #2
    Hi Peter,

    try

    !fieldname

    Comment


    • #3
      doesn't work either

      Comment


      • #4
        Hi,
        empty value for enum field is a string, so try fieldname != ''

        Comment


        • #5
          You want to check if field is empty but you check if field is not null.

          Comment


          • #6
            All right.
            I have to check for "empty", not "null". Tanya's advice helped.
            Thank you.

            Comment


            • #7
              !fieldname should work either.

              Comment

              Working...
              X