Forum Discussion

jcollier's avatar
jcollier
Frequent Visitor
8 years ago
Solved

New column based on other's value

I have a table with two columns: employees and their status.   What I'd like to do: I'd like to classify the status into two categories: active and inactive. I know I should create new table only...
  • Greg_Deckler's avatar
    8 years ago

    This catches everything except #foo, not sure of the parameters around #foo. Is it if it begins with a hashtag?

     

    Column = IF(NOT(ISERROR(VALUE(LEFT([status],1)))) || [status] = "idle", "inactive", "active")