Forum Discussion

abullardBOW's avatar
abullardBOW
Copper Contributor
Mar 06, 2024
Solved

Excel Formula Help

Good morning, I need a cell to show the word “High” or “Medium” or “Low” depending on the number total in a particular cell.   The particular cell has a number total (sum) of a range of cells.   ...
  • OliverScheurich's avatar
    Mar 06, 2024

    abullardBOW 

    =IFS(AND(A1>=0,A1<=71),"Low",AND(A1>=72,A1<=142),"Medium",AND(A1>=143,A1<=999),"High")

     

    If the particular cell is A1 then you can apply this formula.