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
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.