How to convert Excel values into buckets?

后端 未结 12 2522
青春惊慌失措
青春惊慌失措 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 15:54

    Maybe this could help you:

    =IF(N6<10,"0-10",IF(N6<20,"10-20",IF(N6<30,"20-30",IF(N6<40,"30-40",IF(N6<50,"40-50")))))
    

    Just replace the values and the text to small, medium and large.

提交回复
热议问题