How to convert Excel values into buckets?

后端 未结 12 2518
青春惊慌失措
青春惊慌失措 2021-02-20 15:48

I have a set of data in Excel and in one column is a estimate (number of weeks)

I want an Excel formula to bucket it into

  • Small
  • Medium
  • La
12条回答
  •  逝去的感伤
    2021-02-20 16:03

    Another method to create this would be using the if conditionals...meaning you would reference a cell that has a value and depending on that value it will give you the bucket such as small.

    For example, =if(b2>30,"large",if(b2>20,"medium",if(b2>=10,"small",if(b2<10,"tiny",""))))

    So if cell b2 had a value of 12, then it will return the word small.

    Hope this was what you're looking for.

提交回复
热议问题