Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=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 "Jim" wrote: 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 |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try this modifcation to your formula placed in cell V3: =IF(A2=A3, V2+U3, U3)
"Jim" wrote: 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 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Circular Reference | Excel Discussion (Misc queries) | |||
Circular Reference | Excel Worksheet Functions | |||
Circular reference help please! | Excel Discussion (Misc queries) | |||
'circular reference' | Excel Discussion (Misc queries) | |||
how to: circular reference | Excel Worksheet Functions |