Lil Stinker
Board Regular
- Joined
- Feb 16, 2022
- Messages
- 151
- Office Version
- 2019
- Platform
- Windows
Hey folks-
I am looking for some formulas that will give me an accurate Stock In / Stock Out / Damaged Stock / Equip Available assessment based on how our Inventory Sheets are currently formatted. Our equipment is rental, not purchases and sales, so I need to be able to track the inventory as it goes out, comes in and what's left over in between. Below are basic examples of how the sheets are formatted. Sheet 1 shows equipment out, Sheet 2 shows equipment in and/or damaged based on the varying intervals the equipment is returned and Sheet 3 is the balance sheet with the initial count. I'm having difficulty finding a way to properly SUM the Outs and Ins so the values in blue indicate the desired results.
I've tried a variety of SUMIF/SUMIFS formulas but either end up with the wrong result or #VALUE which I suspect is resulting from my quantities being laid out across multiple columns instead of a single column in multiple rows? I've also set up dynamic named ranges since my data is not formatted in tables for each equipment type. I've been at this for days and cannot seem to find anything that resembles our setup. Short of creating separate tables and transferring the existing quantities over, I'm at a loss. I feel like this should be simple but I've always had a difficult time spotting what's right in front of my nose. Any help would be appreciated.
Sheet 1 (invOUT)
Sheet 2 (invRTN)
Sheet 3 (invBAL)
I am looking for some formulas that will give me an accurate Stock In / Stock Out / Damaged Stock / Equip Available assessment based on how our Inventory Sheets are currently formatted. Our equipment is rental, not purchases and sales, so I need to be able to track the inventory as it goes out, comes in and what's left over in between. Below are basic examples of how the sheets are formatted. Sheet 1 shows equipment out, Sheet 2 shows equipment in and/or damaged based on the varying intervals the equipment is returned and Sheet 3 is the balance sheet with the initial count. I'm having difficulty finding a way to properly SUM the Outs and Ins so the values in blue indicate the desired results.
I've tried a variety of SUMIF/SUMIFS formulas but either end up with the wrong result or #VALUE which I suspect is resulting from my quantities being laid out across multiple columns instead of a single column in multiple rows? I've also set up dynamic named ranges since my data is not formatted in tables for each equipment type. I've been at this for days and cannot seem to find anything that resembles our setup. Short of creating separate tables and transferring the existing quantities over, I'm at a loss. I feel like this should be simple but I've always had a difficult time spotting what's right in front of my nose. Any help would be appreciated.
Sheet 1 (invOUT)
Inventory Sample.xlsx | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
A | B | C | D | E | F | G | H | |||
1 | RA No | Open Date | Date Out | Exp. Return | Antennas | Surveys | Batts | Headsets | ||
2 | 10000 | 6/2/2023 | 6/2/2023 | 6/12/2023 | 13 | 13 | 13 | 0 | ||
3 | 10001 | 6/9/2023 | 6/9/2023 | 6/19/2023 | 130 | 10 | 195 | 0 | ||
4 | 10002 | 8/1/2023 | 8/1/2023 | 8/10/2023 | 10 | 0 | 15 | 10 | ||
invOUT |
Sheet 2 (invRTN)
Inventory Sample.xlsx | |||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | |||
1 | uID | RA No. | RTN No. | Open Date | Return Status | Date Out | Return Date | Antennas | DMG Ants | RTN Surveys | DMG Surveys | RTN Batts | DMG Batts | RTN Headsets | DMG Headsets | ||
2 | 1 | 10000 | 00 | 6/13/2023 | 6/2/2023 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | ||||
3 | 2 | 10001 | 00 | 6/21/2023 | 6/9/2023 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | ||||
4 | 3 | 10000 | 01 | 6/13/2023 | Full | 6/2/2023 | 6/14/2023 | 13 | 0 | 13 | 0 | 13 | 0 | 0 | 0 | ||
5 | 4 | 10001 | 01 | 6/21/2023 | Partial | 6/9/2023 | 6/12/2023 | 130 | 1 | 10 | 0 | 195 | 0 | 0 | 0 | ||
6 | 5 | 10001 | 02 | 6/21/2023 | Partial | 6/12/2023 | 8/8/2023 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | ||
invRTN |
Sheet 3 (invBAL)
Inventory Sample.xlsx | ||||||||
---|---|---|---|---|---|---|---|---|
A | B | C | D | E | F | |||
1 | Quantity | |||||||
2 | StockItems | Total | Out | In | Dmg | Available | ||
3 | Antennas | 825 | 10 | 815 | 1 | 814 | ||
4 | Surveys | 136 | 0 | 136 | 2 | 134 | ||
5 | Batts | 3280 | 15 | 3265 | 0 | 3265 | ||
6 | Headsets | 61 | 10 | 51 | 0 | 51 | ||
invBAL |