Forum Discussion

StevieBrett's avatar
StevieBrett
Copper Contributor
Mar 07, 2021
Solved

Excel formula

Hi I have a column with 66 entries of different areas of m2. How can I sort these into 5 groups, ie. under 100, 100-500, 500-1000,1000-10,000, 10,000+. Thanks
  • HansVogelaar's avatar
    HansVogelaar
    Mar 07, 2021

    StevieBrett 

    You could create a pivot table based on the data.

    Add the new column to both the Rows area and the Values area.

     

    Or use formulas such as

     

    =COUNTIFS(A2:A67, "<100")

    =COUNTIFS(A2:A67, ">=100", A2:A67, "<500")

    =COUNTIFS(A2:A67, ">=500", A2:A67, "<1000")

    =COUNTIFS(A2:A67, ">=1000", A2:A67, "<10000")

    =COUNTIFS(A2:A67, ">=10000")

Resources