Hi!
First of all: I'm very new to excel so please be patient and just ask if you don't understand the question.
The problem.
I have a large excel table (around 10 000 rows) and I would like to create a graph that shows how many of certain products are in a certain price range. So for example, I would like to be able to see how many products cost between $10000 and $20000.
The columns are: Product, Price, Date.
So what I was thinking of doing is creating a separate column with an IF/AND statment that checks if a price is within a range and then returns the range.
For example: =IF(All!I2<=9999;"0-9999";IF(AND(All!I2>=10000;ALL!I2<=19999);"10000-19999")
However, I have a lot of ranges so it would be a very long nested IF AND statement, is there another way of doing this? I've tried a pivot table and I know i can group values in it, but as I update my table, the pivot table ads new items outside the groups so I need to regroup them which takes a long time.
First of all: I'm very new to excel so please be patient and just ask if you don't understand the question.
The problem.
I have a large excel table (around 10 000 rows) and I would like to create a graph that shows how many of certain products are in a certain price range. So for example, I would like to be able to see how many products cost between $10000 and $20000.
The columns are: Product, Price, Date.
So what I was thinking of doing is creating a separate column with an IF/AND statment that checks if a price is within a range and then returns the range.
For example: =IF(All!I2<=9999;"0-9999";IF(AND(All!I2>=10000;ALL!I2<=19999);"10000-19999")
However, I have a lot of ranges so it would be a very long nested IF AND statement, is there another way of doing this? I've tried a pivot table and I know i can group values in it, but as I update my table, the pivot table ads new items outside the groups so I need to regroup them which takes a long time.