Forum Discussion

bbwong's avatar
bbwong
Helper I
4 years ago
Solved

Containstring Function

Hi,   Needing help with a formula to calculate the Level of Support containing text of "high intensity" or "standard", with remaining categorized as "Other".   Service Level of Support (calca...
  • Greg_Deckler's avatar
    4 years ago

    bbwong Maybe:

    Column =
      SWITCH(TRUE(),
        SEARCH("High Intensity",[Service]),"High Intensity",
        SEARCH("Standard",[Service]),"Standard",
        "Other"
      )