Forum Discussion
Herbal_ingenuity
May 24, 2023Copper Contributor
Count and transfer
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 # a...
- May 24, 2023
You can use the SUMIF function for this:
=SUMIF(Sheet1!ItemRange, Item, Sheet1!TabRange)
and
=SUMIF(Sheet1!ItemRange, Item, Sheet1!WeightRange)
HansVogelaar
May 24, 2023MVP
You can use the SUMIF function for this:
=SUMIF(Sheet1!ItemRange, Item, Sheet1!TabRange)
and
=SUMIF(Sheet1!ItemRange, Item, Sheet1!WeightRange)