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