Forum Discussion

mshodge's avatar
mshodge
Frequent Visitor
9 years ago
Solved

Multiple Column Criteria for Nested IF

Folks, there must be a better way than this IF statement which works but is just ugly. My rows represent an operator maintenance inspection which includes 16 columns each which represents a specific ...
  • parry2k's avatar
    9 years ago

    not sure but i think it will work:

     

    myvalue = if(col1 = "Issue" || col2 = "Issue" || col3 = "Issue" || col4 = "Issue", "Issue", "Not Issue")

     

    Basicaly you can have multiple fields in OR