Link to home
Start Free TrialLog in
Avatar of LuiLui77
LuiLui77

asked on

Excel dynamic report

Good afternoon All!

I am trying to create an excel spreadsheet were in one of its tabs it will reflect the sum of items per every item class per customer. I am currently unaware if there is a function that I can use for this.

I am not very sure how to explain it, but look in the table attached. I am looking to add another tab in the spreadsheet that will have the sum of all the items CLASS "X" for a particular customer, so item class will be shown just once per customer.User generated imageUser generated image
Avatar of Subodh Tiwari (Neeraj)
Subodh Tiwari (Neeraj)
Flag of India image

You may use SUMIFS to achieve this. Do it like this.....

On Sheet2
Place the column headers like this.....
A1 = Customer Name
B1 = Item Class
C1 = Total Qty

Now input a customer's name in A2 and an item class in B2, then in C2 try the following formula.....

In C2
=SUMIFS(Sheet1!$D$2:$D$25,Sheet1!$A$2:$A$25,A2,Sheet1!$B$2:$B$25,B2)

The above formula will give you the Total Qty for the customer mentioned in A2 and item class mentioned in B2.

You may change the range reference used in the formula as per your requirement.

Does this help?
ASKER CERTIFIED SOLUTION
Avatar of Ryan Chong
Ryan Chong
Flag of Singapore image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of LuiLui77
LuiLui77

ASKER

Pivot Table was a better fit on my situation.

Thank you!