How can separate the data given the data below by warehouse, and count each item by the quantity provided next to the item?
WAREHOUSE1-ITEM1-2-ITEM2-1-ITEM3-1-ITEM4-2-ITEM5-1
WAREHOUSE2-ITEM1-1-ITEM2-2-ITEM3-3-ITEM4-4-ITEM5-5
How can separate the data given the data below by warehouse, and count each item by the quantity provided next to the item?
WAREHOUSE1-ITEM1-2-ITEM2-1-ITEM3-1-ITEM4-2-ITEM5-1
WAREHOUSE2-ITEM1-1-ITEM2-2-ITEM3-3-ITEM4-4-ITEM5-5
Try this,
Then if you want to count each item simply call =SUM() below each item
Cheers