Closed Thread
Results 1 to 11 of 11

Excel 2007 : Track Inventory

  1. #1
    Registered User
    Join Date
    06-23-2010
    Location
    Long beach, CA
    MS-Off Ver
    Excel 2003
    Posts
    5

    Track Inventory

    Hey all,

    I am in no way an expert at using Excel. I can find my way around it for some really basic spreadsheets but I need some help in deciding what the best way is to keep track of specific inventory.

    I'm working in IT and I need a way to keep track of a number of things. To start, I want to keep track of printers and their toner usage. I'd like to be able to specify when they toner was last changed or have some sort of quick "check box" to mark off which will automatically record when I change it and also possibly calculate the amount of time in between the last time it was replaced. If it's even possible, I'd like to see about setting up a formula to calculate the average length of time in between changes.

    I don't know if this is all possible and I apologize if this isn't in the right forum. I could look up a template but I'd rather do this thing from scratch. Poking around it seems like this would be the sort of thing people would want to get paid for. I'm looking for a free solution. However, if that's not possible I would appreciate any help in getting pointed in the right direction.

    In the future I'd like to add another spreadsheet to keep track of desktops or machines within the company. I'd need to log models/model #'s, date we purchased/acquired them, who it's currently assigned to, service tags if any, and any other pertinent information we deem necessary.

    I realize this may be a tall order but I'm hoping I can start a more organized and clean spreadsheet. Thanks in advance for the help.

  2. #2
    Valued Forum Contributor squiggler47's Avatar
    Join Date
    02-17-2009
    Location
    Littleborough, UK
    MS-Off Ver
    Excel 3.0 to 2007+2010! (couldnt get 2.1 working)
    Posts
    1,013

    Re: [BASIC] Best way to keep track of Inventory?

    I would start by creating lists!

    perhaps something like the attached sheet would give you a start!

    (I attached a 2007/2010 version as well, as I developed it in 2010!)
    Attached Files Attached Files
    Regards
    Darren

    Update 12-Nov-2010 Still job hunting!

    If you are happy with the results, please add to our reputation by clicking the blue scales icon in the blue bar of the post.

    Learn something new each day, Embrace change do not fear it, evolve and do not become extinct!


  3. #3
    Registered User
    Join Date
    06-23-2010
    Location
    Long beach, CA
    MS-Off Ver
    Excel 2003
    Posts
    5

    Re: Track Inventory

    Thanks for the attached files. I'm looking at them right now and I'm already trying to figure out ways I can adapt this for my usage. Is it hard to add drop-down boxes and such? The user field isn't one I'd need so I can probably delete that entire row or find another use for it. Thanks again and hopefully I can find a way to augment this. I need to learn some serious excel skills.

  4. #4
    Valued Forum Contributor squiggler47's Avatar
    Join Date
    02-17-2009
    Location
    Littleborough, UK
    MS-Off Ver
    Excel 3.0 to 2007+2010! (couldnt get 2.1 working)
    Posts
    1,013

    Re: Track Inventory

    The drop downs are done using Data>Data Validation from the menu, open up with the dropdown cell highlightd to see how it works!

    Creating lists like this is a good way to organize data as it allows you to filter and sort easily!

  5. #5
    Registered User
    Join Date
    06-23-2010
    Location
    Long beach, CA
    MS-Off Ver
    Excel 2003
    Posts
    5

    Re: Track Inventory

    Quote Originally Posted by squiggler47 View Post
    The drop downs are done using Data>Data Validation from the menu, open up with the dropdown cell highlightd to see how it works!

    Creating lists like this is a good way to organize data as it allows you to filter and sort easily!
    Thanks for that tip! That definitely helps to see the entire picture. I wasn't sure how those other spreadsheets were working in conjunction but having looked at them it all makes sense now. Awesome! Thanks a lot squiggler. I think I might be able to work something out from here. I feel like I might need to add another column in between here.

    I do have a question: If I use the spreadsheet as is (without editing anything), can I accomplish what I'm attempting in terms of getting an average of the life of the toner as I log each change? I guess I might be confusing myself with the "Date of Purchase" field and the "Average Toner Life" field.

    +1 rep for the help so far!

    --

    I dove into it a little more and it looks like the departments and user tabs were interchanged. The dropdowns pointed to the right tabbed worksheet but inside the worksheet the names of the lists were switched. Fixed that and everything looks ok but now I have another question. I have printers in two separate loctions (two different office buildings). Is it possible to drop down to a specific location, then have the next field/dropdown populate with printers ONLY in that location? This is probably getting way too complicated lol. Maybe I should just do this by hand
    Last edited by Driankeith; 10-27-2010 at 04:59 PM.

  6. #6
    Valued Forum Contributor squiggler47's Avatar
    Join Date
    02-17-2009
    Location
    Littleborough, UK
    MS-Off Ver
    Excel 3.0 to 2007+2010! (couldnt get 2.1 working)
    Posts
    1,013

    Re: Track Inventory

    Average toner life is calculated from the log table, it basically takes the first date listed and the last date listed and subtracts them to find the number of days, then counts the number of changes and divides.

    You may find that you need to change the formula to :-

    =SUMPRODUCT(MAX('Toner Log'!$C$3:$C$6*(Printers!$B3='Toner Log'!$B$3:$B$6))-MIN('Toner Log'!$C$3:$C$6+(1E+304*(Printers!$B3='Toner Log'!$B$3:$B$6))))/MAX(COUNTIF('Toner Log'!$B$3:$B$6,Printers!$B3)-1,1)

    It just needs you to enter the in service date as the first toner change date, that way you can track it!

  7. #7
    Registered User
    Join Date
    06-23-2010
    Location
    Long beach, CA
    MS-Off Ver
    Excel 2003
    Posts
    5

    Re: Track Inventory

    Quote Originally Posted by squiggler47 View Post
    Average toner life is calculated from the log table, it basically takes the first date listed and the last date listed and subtracts them to find the number of days, then counts the number of changes and divides.

    You may find that you need to change the formula to :-

    =SUMPRODUCT(MAX('Toner Log'!$C$3:$C$6*(Printers!$B3='Toner Log'!$B$3:$B$6))-MIN('Toner Log'!$C$3:$C$6+(1E+304*(Printers!$B3='Toner Log'!$B$3:$B$6))))/MAX(COUNTIF('Toner Log'!$B$3:$B$6,Printers!$B3)-1,1)

    It just needs you to enter the in service date as the first toner change date, that way you can track it!
    Thanks, this formula seems to be working well as far as I can test it.

    I ran into a problem when I tried expanding the cells it is calculating from. I've modified it to read from,

    'toner log' B3 thru B12 and from C3 thru C12. My problem is on the toner log worksheet. How can I keep adding to this? I've tried simply dragging from the lower right corner down but the formula doesn't seem to like that.

  8. #8
    Valued Forum Contributor squiggler47's Avatar
    Join Date
    02-17-2009
    Location
    Littleborough, UK
    MS-Off Ver
    Excel 3.0 to 2007+2010! (couldnt get 2.1 working)
    Posts
    1,013

    Re: Track Inventory

    Can anyone with 2003 take a look at the file, unfortunately I dont have access to 2003 at the moment! I think its a problem with the ranges because of the tables, the formulas should change when the table is expanded!

  9. #9
    Registered User
    Join Date
    06-23-2010
    Location
    Long beach, CA
    MS-Off Ver
    Excel 2003
    Posts
    5

    Re: Track Inventory

    Quote Originally Posted by squiggler47 View Post
    Can anyone with 2003 take a look at the file, unfortunately I dont have access to 2003 at the moment! I think its a problem with the ranges because of the tables, the formulas should change when the table is expanded!
    I think you're right and I believe it is working. I don't know but I must have goofed something up when I was playing around with it. I think I'll take what you've given me here and run with it. If I have any more specific questions I'll post back here.

  10. #10
    Registered User
    Join Date
    11-15-2023
    Location
    Philippines
    MS-Off Ver
    MS OFFICE 2016
    Posts
    1

    Re: Excel 2007 : Track Inventory

    Hello, is there any excel format to track the usage of toners for the office and branches?

    Thank you

  11. #11
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,780

    Re: Excel 2007 : Track Inventory

    Administrative Note:

    Welcome to the forum.

    We are happy to help, however whilst you feel your request is similar to this thread, experience has shown that things soon get confusing when answers refer to particular cells/ranges/sheets which are unique to your post and not relevant to the original.

    Please see Forum Rule #1 about hijacking and start a new thread for your query.

    If you are not familiar with how to start a new thread see the FAQ: How to start a new thread
    Ali


    Enthusiastic self-taught user of MS Excel who's always learning!
    Don't forget to say "thank you" in your thread to anyone who has offered you help.
    You can reward them by clicking on * Add Reputation below their user name on the left, if you wish.

    Forum Rules (updated August 2023): please read them here.

Closed Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1