+ Reply to Thread
Results 1 to 15 of 15

Daily Production Reporting

  1. #1
    Forum Contributor
    Join Date
    02-23-2014
    Location
    Melbourne
    MS-Off Ver
    Microsoft 365
    Posts
    174

    Daily Production Reporting

    Hello All
    I need some help and ideas on how to setup an excel file for daily production reporting
    We have around 15 operators. What I need is an excel file for each that they use
    Excel files for each as they would want to start or finish at the same time so cant use one excel file

    When they start the job they enter the production order number and click on start
    this data should then get copied to another excel file
    So every time an operator starts, stops or finish's a job the details (Production order number, Start time, Operator name. If there are delays. Reason for delays) are copied to the last row on the excel file

    Then I need a report that shows when a production order number was started at this time and date and took this long to build

    There could be more than one operator working on the same production order at the same time

    I have attached a screen shot of how the report should look

    Thank you
    Regards
    Rahul
    Attached Images Attached Images

  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: Daily Production Reporting

    Hi Rahul_ferns76,

    I can't open your picture to see what you want to do, can you post a file?
    Remember you are unique, like everyone else

  3. #3
    Forum Contributor
    Join Date
    02-23-2014
    Location
    Melbourne
    MS-Off Ver
    Microsoft 365
    Posts
    174

    Re: Daily Production Reporting

    Hi noboffinme
    I have created an example
    This can change to achieve what I am after

    I have attached the excel file and the screen shot of an sample I found
    Which I hope to replicate
    Thanks
    Rahul
    Attached Files Attached Files

  4. #4
    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: Daily Production Reporting

    Hi rahul_ferns76,

    So each operator completes a worksheet with some info, can you post an example of what that worksheet would look like with some dummy data?

    Do you have a plan on how the info gets copied onto your example workbook?

  5. #5
    Forum Contributor
    Join Date
    02-23-2014
    Location
    Melbourne
    MS-Off Ver
    Microsoft 365
    Posts
    174

    Re: Daily Production Reporting

    Hi Noboffinme
    Sorry for the late reply
    I was designing and setting up the input excel file
    I have attached it. There is more needed on the file
    But it gives you an idea how the data will be inputted, saved to the flat worksheet

    How to get this data to the main file, I have no idea

    There will be 15 to 20 files that will feed the data

    Any ideas on how I can achieve it would be much appreciated

    Thanks
    Rahul
    Attached Files Attached Files

  6. #6
    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: Daily Production Reporting

    Thanks,

    I notice you've built some Excel Userforms, have you thought of using MS Access instead?

  7. #7
    Forum Contributor
    Join Date
    02-23-2014
    Location
    Melbourne
    MS-Off Ver
    Microsoft 365
    Posts
    174

    Re: Daily Production Reporting

    Hi
    We are a small business and no I can't get ms access
    Life would be so much easier if I did
    I have access to SQL server, but have never used it so I'm not so confident using it

    Would it be possible using excel?

  8. #8
    Forum Contributor
    Join Date
    02-23-2014
    Location
    Melbourne
    MS-Off Ver
    Microsoft 365
    Posts
    174

    Re: Daily Production Reporting

    Hi
    Just trying some codes to use VLookup in the user form
    but am getting an error
    Can anyone advise where am I making the mistake?

    Private Sub FirstName_AfterUpdate()
    'Check to see if value exists
    If WorksheetFunction.CountIf(Sheet1.Range("C:C"), Me.FirstName.Value) = 0 Then
    MsgBox "You Have Entered An Incorrect Name"
    Me.FirstName.Value = ""
    Exit Sub
    End If
    'Lookup values based on first control
    With Me
    .LastName = Application.WorksheetFunction.VLookup(Me.FirstName), Sheet1.Range("EmpLookup"), 2, 0)
    .StaffID = Application.WorksheetFunction.VLookup(Me.FirstName), Sheet1.Range("EmpLookup"),2,0)

    End With

    End Sub

    Thanks

  9. #9
    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: Daily Production Reporting

    Hi rahul_ferns76,

    Yes, it is possible to do this with a Userform & you have already created some structure.

    First up, test the collection of some data with each Userform.

    Re your code error, which Userform was the above code applied to?

    What was the error description?

    If you step through the code using F8, can you advise what line the error occurred on?

    Thanks

  10. #10
    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: Daily Production Reporting

    Hi Again,Have a look at this link to see how to get the data entered onto your spreadsheet.

    https://www.youtube.com/watch?v=KhwkGJPtq-E

  11. #11
    Forum Contributor
    Join Date
    02-23-2014
    Location
    Melbourne
    MS-Off Ver
    Microsoft 365
    Posts
    174

    Re: Daily Production Reporting

    Hi Noboffinme,
    Thanks for links. I needed that
    I am still working out how to fill the database when the user enters data in the user form

    Thanks

  12. #12
    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: Daily Production Reporting

    Hi,

    First up, get the entered data to go to the right place on the worksheet.

    Next step get the data as you want it on request.

    Did you follow the link video because that's the step to get the data to go to the worksheet.

    Let me know how you went.

    Cheers

  13. #13
    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: Daily Production Reporting

    Hi rahul_ferns76,

    I've attaced a working example of the data entry from the Start form to add a First Name to the worksheet.

    Have a look at how it works & then once you have entered some data, you can start to create an output for the dashboard.

    Obviously you'll need to get some numbers onto your worksheets to create charts.
    Attached Files Attached Files

  14. #14
    Forum Contributor
    Join Date
    02-23-2014
    Location
    Melbourne
    MS-Off Ver
    Microsoft 365
    Posts
    174

    Re: Daily Production Reporting

    Hi Noboffinme
    I have been working on the file and I have got some of it working
    Got the code for the Clock On and Start Job working

    I have been thinking and think need to make a minor change to way the form interacts
    These excel files are dedicated to individuals, so I am wasting time getting them to fill their names and Staff ID every time they use the form
    Is it possible in the setting sheet, a user is selected and then the first three data become default for this excel file and forms (Staff ID, First Name & Last Name)

    I have attached some screen shots and the latest excel file with my VB Coding

    Thanks
    Rahul
    Attached Images Attached Images
    Attached Files Attached Files

  15. #15
    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: Daily Production Reporting

    Hi rahul_ferns76,

    Have a look at the attached.

    It's a Userform from this site;

    http://www.contextures.com/excelfiles.html#UserForm

    Although it's built for a different purpose, there are some common features that you could use.

    Note how the User selects their code from the drop down list at Cell 'J3' on the Input worksheet.

    This is a good method of entry that you could adapt for your project so that the information goes to the correct place.
    Attached Files Attached Files

+ 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. Creating a database from daily production reports
    By FroukeWiersma in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 11-12-2013, 05:43 AM
  2. Replies: 2
    Last Post: 09-28-2013, 02:40 AM
  3. [SOLVED] Macro for saving daily production.
    By Aussie1 in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 03-02-2013, 11:20 PM
  4. Help with production % vs time worked. daily / weekly. thanks!
    By Kevineedshelp in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 07-14-2012, 12:30 PM
  5. [SOLVED] Daily Production counting excel
    By rajeshntiwari in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 04-29-2012, 07:55 AM
  6. Daily fault reporting
    By alexcraw in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 08-05-2008, 12:23 AM
  7. Daily production worksheet for manufacturing
    By gjsocha in forum Excel General
    Replies: 0
    Last Post: 04-24-2006, 11:15 AM
  8. What is the best program for production reporting
    By Production Reporting Help in forum Excel General
    Replies: 1
    Last Post: 08-08-2005, 01:05 PM

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