Inventory Summary Sheet

amyylouise

New Member
Joined
Sep 3, 2013
Messages
22
I have a table 'InventoryTracking' which contains all my data for inventory coming in and out.

I would like to create a summary sheet showing what items I currently have in stock.
If the "Date Sold" column is blank, the item is still in stock.

Example of my InventoryTracking table:
Purchase DateItem NameDate Sold
11-Nov-2017ItemA
11-Nov-2017ItemA2-Dec-2017
11-Nov-2017ItemA
25-Nov-2017ItemB
25-Nov-2017ItemB
25-Nov-2017ItemB

<tbody>
</tbody>

Example of Summary table:
Item NameQty
ItemA2
ItemB3

<tbody>
</tbody>

I have no idea where to even start to create a summary table like this. Help please!

TIA!
 

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"
amyylouise, Good evening.

It's a very different inventory control worksheet.

Assuming the columns with data are A, B, and C, try this formula:

example of Summary table:
DE
8Item NameQty
9ItemA=formula
10ItemB=formula

<tbody>
</tbody>

E9 --> =COUNTIFS(B1:B6, D9, C1:C6, "")

Adapt the reference to cells to your reality.

Please tell us if this is what you needed.
I hope I've helped.
 
Upvote 0
amyylouise, Good evening.

It's a very different inventory control worksheet.

Assuming the columns with data are A, B, and C, try this formula:

example of Summary table:
DE
8Item NameQty
9ItemA=formula
10ItemB=formula

<tbody>
</tbody>

E9 --> =COUNTIFS(B1:B6, D9, C1:C6, "")

Adapt the reference to cells to your reality.

Please tell us if this is what you needed.
I hope I've helped.

Thanks Marcílio
I would like the summary sheet to automatically pull the item names from the InventoryTracking table and it doesn't look like your method does this.
 
Upvote 0
amyylouise, Good evening.

"...I would like the summary sheet to automatically pull the item names from the InventoryTracking table and it doesn't look like your method does this..."
You didn't ask for this in your initial message.

Scenario:

InventoryTracking Table: A2:C20

Summary Table: F2:G20

Try to use:

Summary Table
F2 -->
=IFERROR(INDEX($B$2:$B$20,MATCH(0,INDEX(COUNTIF($F$1:F1,$B$2:$B$20),),)),"")

G2 -->
=IF(F2="","",COUNTIFS(B2:B20, F2, C2:C20, ""))

Copy the formulas down.

I've set an example for you:
https://www.sendspace.com/file/41sger

Take a look at it and tell us if it's what you desire.
I hope it helps.
 
Upvote 0
amyylouise, Good evening.

"...I would like the summary sheet to automatically pull the item names from the InventoryTracking table and it doesn't look like your method does this..."
You didn't ask for this in your initial message.

Scenario:

InventoryTracking Table: A2:C20

Summary Table: F2:G20

Try to use:

Summary Table
F2 -->
=IFERROR(INDEX($B$2:$B$20,MATCH(0,INDEX(COUNTIF($F$1:F1,$B$2:$B$20),),)),"")

G2 -->
=IF(F2="","",COUNTIFS(B2:B20, F2, C2:C20, ""))

Copy the formulas down.

I've set an example for you:
https://www.sendspace.com/file/41sger

Take a look at it and tell us if it's what you desire.
I hope it helps.

Thanks Marcílio! That works!
Now, I tried to sort the item names in the summary table in ascending order, but it doesn't work. Is there any way to sort the names alphabetically?

Amy
 
Upvote 0

Forum statistics

Threads
1,214,522
Messages
6,120,020
Members
448,939
Latest member
Leon Leenders

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