I want date wise item wise summary report

Prodip Das

New Member
Joined
Nov 13, 2015
Messages
4
I want to generate date wise item wise quantitative summary report. But not able to judge the appropriate formula. Would appreciate if any one can help me out to sort out the same.Find below the table.

DateBuyer's NameItemInvoice NoUnitQty
01-04-2015Ramesh & CoFull Plate1Nos.40
01-04-2015Ramesh & CoQtr Plate1Nos.50
01-04-2015Ramesh & CoTumbler1Nos.50
01-04-2015Prabir DasFull Plate2Nos.50
01-04-2015Prabir DasTumbler2Nos.50
04-04-2015Kamal TradersC/Saucer Set3Set10
04-04-2015Kamal TradersSoup Bowl3Nos.50
04-04-2015Ganesh AcharyaBowl-Small4Nos.60
04-04-2015Ganesh AcharyaC/Saucer Set4Set30
04-04-2015Ganesh AcharyaSoup Bowl4Nos.150
04-04-2015Vicky ShawQtr Plate5Nos.100
04-04-2015Sanjay DeyTumbler6Nos.70
04-04-2015Bharati UdyogBowl-Small7Nos.100

<colgroup><col><col><col><col span="3"></colgroup><tbody>
</tbody>

I want to get report using appropriate formula as per following:
DateItemQty
01-04-2015Full Plate90
01-04-2015Qtr Plate50
01-04-2015Tumbler100
04-04-2015C/Saucer Set40
04-04-2015Soup Bowl200
04-04-2015Bowl-Small160
04-04-2015Qtr Plate100
04-04-2015Tumbler70


<colgroup><col><col><col></colgroup><tbody>
</tbody>
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
If you insist on having a formula system...

Sheet1

Row\Col
A​
B​
C​
D​
E​
F​
1​
DateBuyer's NameItemInvoice NoUnitQty
2​
1/4/2015
Ramesh & CoFull Plate
1
Nos.
40
3​
1/4/2015
Ramesh & CoQtr Plate
1
Nos.
50
4​
1/4/2015
Ramesh & CoTumbler
1
Nos.
50
5​
1/4/2015
Prabir DasFull Plate
2
Nos.
50
6​
1/4/2015
Prabir DasTumbler
2
Nos.
50
7​
4/4/2015
Kamal TradersC/Saucer Set
3
Set
10
8​
4/4/2015
Kamal TradersSoup Bowl
3
Nos.
50
9​
4/4/2015
Ganesh AcharyaBowl-Small
4
Nos.
60
10​
4/4/2015
Ganesh AcharyaC/Saucer Set
4
Set
30
11​
4/4/2015
Ganesh AcharyaSoup Bowl
4
Nos.
150
12​
4/4/2015
Vicky ShawQtr Plate
5
Nos.
100
13​
4/4/2015
Sanjay DeyTumbler
6
Nos.
70
14​
4/4/2015
Bharati UdyogBowl-Small
7
Nos.
100

<tbody>
</tbody>


Name A2:A14 Date in Formulas | Name Manager.
Name C2:C14 Item in Formulas | Name Manager.
Name F2:F14 Qty <strike></strike>in Formulas | Name Manager.

Sheet2

<strike></strike>
Row\Col
A​
B​
C​
1​
DateItemQty
2​
1/4/2015
Full Plate
90
3​
1/4/2015
Qtr Plate
50
4​
1/4/2015
Tumbler
100
5​
4/4/2015
C/Saucer Set
40
6​
4/4/2015
Soup Bowl
200
7​
4/4/2015
Bowl-Small
160
8​
4/4/2015
Qtr Plate
100
9​
4/4/2015
Tumbler
70
10​

<tbody>
</tbody>


In A2 control+shift+enter, not just enter, and copy down:
Rich (BB code):

=IFERROR(INDEX(Date,SMALL(IF(FREQUENCY(MATCH(Item&"|"&Date,Item&"|"&Date,0),
  ROW(Item)-ROW(INDEX(Item,1,1))+1),ROW(Item)-ROW(INDEX(Item,1,1))+1),
  ROWS(A$2:A2))),"")

In B2 control+shift+enter, not just enter, and copy down:
Rich (BB code):

=IFERROR(INDEX(Item,SMALL(IF(FREQUENCY(MATCH(Item&"|"&Date,Item&"|"&Date,0),
  ROW(Item)-ROW(INDEX(Item,1,1))+1),ROW(Item)-ROW(INDEX(Item,1,1))+1),
  ROWS(B$2:B2))),"")

In C2 just enter and copy down:
Rich (BB code):

=IF($A2="","",SUMIFS(Qty,Date,A2,Item,B2))
<strike></strike>
 
Upvote 0

Forum statistics

Threads
1,215,086
Messages
6,123,035
Members
449,092
Latest member
ikke

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