How To Sum Qty product Wise

krunal123

Board Regular
Joined
Jun 26, 2020
Messages
169
Office Version
  1. 365
  2. 2019
  3. 2016
Platform
  1. Windows
image_2021-01-20_101402.png


# How To Sum Qty product Wise ????

-> Sheet 1 and Sheet 2 Sum Qty via Product based to Sheet 3, but Condition is Both List not same in a Serial , How to find Total with Product Based ?????????????????????????????????????????????????????
 

Excel Facts

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.
Try this:
Excel Formula:
=VLOOKUP(A3,Sheet1!$A$3:$B$6,2,FALSE)+VLOOKUP(A3,Sheet2!$A$3:$B$6,2,FALSE)

Change Range to Your Range at sheet1 & Your Range at sheet2.
 
Upvote 0
You could append one sheet to the other in power Query and then perform a Group By and Sum the Group.
 
Upvote 0
# How to sum Qty to 10 sheet or more Sheet, How to possible with Name ??????????

As per Above Style Query........
 
Upvote 0
Please provide some sample worksheets in XL2BB so that we can demonstrate with actual data. We cannot manipulate data in pictures.
 
Upvote 0
table1table2Result
ProductQtyProductQtyProductQty
BEER200WINE100BEER250
WINE100BEER50WINE200
VODKA50BRANDY150VODKA550
BRANDY300VODKA500BRANDY450

Power Query:
let
    Source1 = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
    Source2 = Excel.CurrentWorkbook(){[Name="Table2"]}[Content],
    Append = Table.Combine({Source1, Source2}),
    Group = Table.Group(Append, {"Product"}, {{"Qty", each List.Sum([Qty]), type number}})
in
    Group
You can load result table wherever you want
 
Upvote 0

Forum statistics

Threads
1,214,975
Messages
6,122,537
Members
449,088
Latest member
RandomExceller01

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top