+ Reply to Thread
Results 1 to 10 of 10

inputting a number representing "Time" spent on a "Task" under drop menu's

  1. #1
    Registered User
    Join Date
    12-08-2013
    Location
    Canada
    MS-Off Ver
    Excel 2010
    Posts
    6

    inputting a number representing "Time" spent on a "Task" under drop menu's

    is it possible to create a drop down menu where additional information can be added then tallied up in a separate table?

    I would like to create a menu representing "tasks" where an amount of "time" can be designated per menu for my employees to select and fill. I would like this information to then be tallied elsewhere so I can keep track of our efficiency.

    I've attached the excel file to give a better idea of what i'm trying to accomplish.

    I'd really appreciate any help or input guys!

  2. #2
    Forum Contributor noboffinme's Avatar
    Join Date
    08-29-2013
    Location
    Melbourne, Australia
    MS-Off Ver
    Excel 2003/7/10/13/16/19
    Posts
    1,071

    Re: inputting a number representing "Time" spent on a "Task" under drop menu's

    Hi cubbymonkey,

    You can have another Drop down just as you have for the tasks.

    For example, where the '9' is.

    Is the issue trying to collect many amounts of time for various tasks & adding them together?
    Remember you are unique, like everyone else

  3. #3
    Registered User
    Join Date
    12-08-2013
    Location
    Canada
    MS-Off Ver
    Excel 2010
    Posts
    6

    Re: inputting a number representing "Time" spent on a "Task" under drop menu's

    Hi noboffinme, Thanks for the reply. I've uploaded an updated version of the file. As you'll see, there's a budget on the second tab that I would like to relay information into.

    There's a "time" input beside each "task" drop down menu, I would like these inputs to be added up underneath the same category on the budget tab.

    For example: If I work Monday, Tuesday and Wednesday doing tiling.. I would like the budget to reflect those accumulated hours (throughout the week) nested under "tiling".

    Can this be done?

    Thanks once again

  4. #4
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,938

    Re: inputting a number representing "Time" spent on a "Task" under drop menu's

    Hi and welcome to the forum

    This is a bit long-winded, but try this on the summary sheet, copied down (not sure which column you want to put it in)...
    =SUMIF(Biweekly!$D$13:$D$56,Budget!$A3,Biweekly!$E$13:$E$56)+SUMIF(Biweekly!$F$13:$F$56,Budget!$A3,Biweekly!$G$13:$G$56)+SUMIF(Biweekly!$H$13:$H$56,Budget!$A3,Biweekly!$I$13:$I$56)
    1. Use code tags for VBA. [code] Your Code [/code] (or use the # button)
    2. If your question is resolved, mark it SOLVED using the thread tools
    3. Click on the star if you think someone helped you

    Regards
    Ford

  5. #5
    Forum Contributor noboffinme's Avatar
    Join Date
    08-29-2013
    Location
    Melbourne, Australia
    MS-Off Ver
    Excel 2003/7/10/13/16/19
    Posts
    1,071

    Re: inputting a number representing "Time" spent on a "Task" under drop menu's

    Hi cubbymonkey,

    You can do this using the SUMIF Function.

    Have a look at some examples & come back to me if you're stuck.

    Cheers

  6. #6
    Registered User
    Join Date
    12-08-2013
    Location
    Canada
    MS-Off Ver
    Excel 2010
    Posts
    6

    Re: inputting a number representing "Time" spent on a "Task" under drop menu's

    Thank you both very much, that was exactly what i needed. So happy that I joined your forum

  7. #7
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,938

    Re: inputting a number representing "Time" spent on a "Task" under drop menu's

    Happy to help and thanks for the feedback Look forward to assisting you in more questions

    For future reference, if your question has been answered, please use the THREAD tools (near the top of the page) to mark your thread SOLVED - it helps keep things neat and tidy
    (I will do it for you this time)

  8. #8
    Registered User
    Join Date
    12-08-2013
    Location
    Canada
    MS-Off Ver
    Excel 2010
    Posts
    6

    Re: inputting a number representing "Time" spent on a "Task" under drop menu's

    Hey guys, Not sure if I should create a new thread or not, but I have a separate question relating to this summary workbook. Is it possible to have my summary page draw hours from an individuals separate timesheet workbook, but only draw hours that relate to the job via a location selection drop down?

    My idea is to have a project summary workbook per job that's at hand. Employees will fill out their own timesheets in a separate workbook, then each project summary will draw relative data from their timesheets. I need this to work for multiple employees and jobs. Can this be done?
    Attached Files Attached Files
    Last edited by cubbymonkey; 12-27-2013 at 06:17 PM.

  9. #9
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,938

    Re: inputting a number representing "Time" spent on a "Task" under drop menu's

    Just for future reference, you should try and avoid using merged cells if at all possible - they create nothing but problems!! (for instance, "day of week" is in row 11, but "task/Time" is in row 12...this creates havoc when using formulas)

    Something like this in your master WB (for row 16 cells), copied down and across will get you started, I think. You will just have to make a small adjustment for the merged cells...
    =INDEX('[employee-timesheet (1).xls]Biweekly'!$A:$I,MATCH($A16,'[employee-timesheet (1).xls]Biweekly'!$A:$A,0),MATCH(C$11,'[employee-timesheet (1).xls]Biweekly'!$A$11:$I$11,0))
    and then this for row 17 cells...
    =INDEX('[employee-timesheet (1).xls]Biweekly'!$A:$I,MATCH($A16,'[employee-timesheet (1).xls]Biweekly'!$A:$A,0)+1,MATCH(C$11,'[employee-timesheet (1).xls]Biweekly'!$A$11:$I$11,0))

  10. #10
    Registered User
    Join Date
    12-08-2013
    Location
    Canada
    MS-Off Ver
    Excel 2010
    Posts
    6

    Re: inputting a number representing "Time" spent on a "Task" under drop menu's

    Thanks for the reply Fdibbins,

    I'm a little confused as to which cell I should be pasting this formula into?

    Whats the significance of using A16 instead of A13?

    How do I use this formula for multiple workbooks and employees?

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Replies: 4
    Last Post: 11-17-2013, 12:05 PM
  2. [SOLVED] How to USE """"" cells count """"" change font color
    By austin123456 in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 10-09-2013, 06:14 AM
  3. [SOLVED] Assign Categories for Time of Day: "Morning", "Afternoon", "Evening"
    By long_shanks in forum Excel General
    Replies: 3
    Last Post: 06-11-2013, 02:59 AM
  4. [SOLVED] How to Count number of "Error" and "OK" after the word "Instrument" found in table row
    By eltonlaw in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 05-17-2012, 06:26 AM
  5. Replies: 4
    Last Post: 01-21-2008, 08:22 AM

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