SOLVED

Count and transfer

Copper Contributor

I have a spreadsheet. On Tab 1 "BULK", I enter in an item #, Item tag weight, and item actual weight.

For the same product there can be multiple item #s.

On Tab 2 "SUMMARY", I combine each item # and manually transfer over the tag and actual weights.

Is there a way to automatically transfer over and count. So if there are 6 item #123 cells, it would transfer over from "BULK" to "SUMMARY" to 1 cell and total the tag and actual weights for item #123?

 

Herbal_ingenuity_0-1684950926837.png

 

1 Reply
best response confirmed by Herbal_ingenuity (Copper Contributor)
Solution

@Herbal_ingenuity 

You can use the SUMIF function for this:

 

=SUMIF(Sheet1!ItemRange, Item, Sheet1!TabRange)

 

and

 

=SUMIF(Sheet1!ItemRange, Item, Sheet1!WeightRange)

1 best response

Accepted Solutions
best response confirmed by Herbal_ingenuity (Copper Contributor)
Solution

@Herbal_ingenuity 

You can use the SUMIF function for this:

 

=SUMIF(Sheet1!ItemRange, Item, Sheet1!TabRange)

 

and

 

=SUMIF(Sheet1!ItemRange, Item, Sheet1!WeightRange)

View solution in original post