Circular Reference

G

Guest

I am working on an inventory spreadsheet. I am trying to get a total for each
item in a separate column. Each item has multiple rows due to the number of
locations. The formula I have tried to use =IF(A2=A3,V3=V2+U3,V3=U3) does not
work. (A is my item number column, U is my quantity column and V is the
column I am trying to get to be my total for that item number) I am trying to
get it to add the helper row above it if the item numbers match and if they
do not match I want it to use the "u" column. I am probably going about this
in the wrong way so any help is appreciated. Thank you
 
G

Guest

=SUMIF(A:A,"Item",U:U)

where "Item" is you item number

Put a list of item numbers in a column say V, and in W2:

=SUMIF(A:A,V2,U:U)

and copy down
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top