+ Reply to Thread
Results 1 to 7 of 7

Timing Data Entry

  1. #1
    Registered User
    Join Date
    06-25-2025
    Location
    England
    MS-Off Ver
    Office Home 2024 v2505
    Posts
    5

    Timing Data Entry

    Is there a way of recording the time it takes between manually
    entering data for all columns and the time it takes where the majority of data will be available from drop down lists, so the time it takes for the data to be searched and selected.
    Attached Files Attached Files

  2. #2
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    31,297

    Re: Timing Data Entry

    Obtaining data from dropdown lists is going to be quicker than manual entry and, more importantly, ACCURATE - no typos.
    If that takes care of your original question, please select Thread Tools from the menu link above and mark this thread as SOLVED.

  3. #3
    Registered User
    Join Date
    06-25-2025
    Location
    England
    MS-Off Ver
    Office Home 2024 v2505
    Posts
    5

    Re: Timing Data Entry

    I want to gather the timing difference between the 2 means of data entry across several departments and for 1,000's of rows of data over a set period.

  4. #4
    Registered User
    Join Date
    06-25-2025
    Location
    England
    MS-Off Ver
    Office Home 2024 v2505
    Posts
    5

    Red face Timing Data Entry

    Is there a way of recording the time it takes between manually
    entering data for all columns and the time it takes where the majority of data will be available from drop down lists, so the time it takes for the data to be searched and selected.

    Not sure how to do this - is there a VBA solution.

    Would appreciate any assistance if there is a solution.

    Thank you Excel Help.
    Attached Files Attached Files
    Last edited by brian_01; 06-30-2025 at 10:22 AM. Reason: Thank Excel Help

  5. #5
    Administrator 6StringJazzer's Avatar
    Join Date
    01-27-2010
    Location
    Tysons Corner, VA, USA
    MS-Off Ver
    MS 365 Family 64-bit 2505
    Posts
    27,272

    Re: Timing Data Entry

    If you have the option to use a dropdown list, that will always be faster and more accurate, as John Topley notes, unless you have extremely long lists (hundreds-thousands) where it takes longer to find an item than to type it in.

    This is not particularly hard technically, but there has to be a trigger to start the timer, and to end it. What events do you want to use? You can add buttons to signal Start and Finish. Or you can detect when data starts to be entered, and monitor when the data entry is complete. If so, you need to define for us what it means to start entry and end entry.

    Looking at your data, are you really going to have lists of all possible customer names, customer addresses, and work proposed? Those all sound like they would be unique for each entry and have to be typed in.

    There are some practical challenges:

    This will be a challenge
    several departments and for 1,000's of rows
    You have to have one version of the file where data is typed in, and another version with dropdowns. How are you going to distribute these across several departments? Is each person going to enter the same data twice, once in each version? How will you manage the data where there are two versions of each file, each one being updated independently?

    What if they start entry in one row, then go to another row before the first is finished?

    The way that HCI experts do this kind of A/B test is in the lab, where they can instruct and observe users and control the environment. Measuring the timing of human action is full of problems when it is not in a controlled lab environment. People have all kinds of random pauses with this kind of work and your results might not be meaningful. Someone is going to enter two items, go get a cup of coffee, enter another item, go to the bathroom, enter another item, answer the phone.
    Jeff
    | | |會 |會 |會 |會 | |:| | |會 |會
    Read the rules
    Use code tags to [code]enclose your code![/code]

  6. #6
    Registered User
    Join Date
    06-25-2025
    Location
    England
    MS-Off Ver
    Office Home 2024 v2505
    Posts
    5

    Re: Timing Data Entry

    Quote Originally Posted by 6StringJazzer View Post
    The way that HCI experts do this kind of A/B test is in the lab, where they can instruct and observe users and control the environment. Measuring the timing of human action is full of problems when it is not in a controlled lab environment. People have all kinds of random pauses with this kind of work and your results might not be meaningful. Someone is going to enter two items, go get a cup of coffee, enter another item, go to the bathroom, enter another item, answer the phone.
    Under non-lab conditions I understand data not 100% reliable.

    Data from drop-down-validation supplied by already populated tables in other worksheets.

    Timings, drop-down list start - when clicked, value found and selected, stop when this last action has stopped.
    Timings, data entry start - from the first key press inside cell, stop when no more key presses recognised.
    Timings from each cell added to a single cell Timings (s) at end of row.

    If user returns to any cell in any row, timings restart and data added to existing Time Taken (s) column.

    My VBA very, very limited I understand that not all scenarios can be achieved using code.

    If the data would not be accurate then for the reasons you stated then I would not be able to use this data for any types of comparison.

    Thank you 6StringJazzer for your feedback, this why I have joined this forum to learn and understand.

  7. #7
    Forum Contributor
    Join Date
    01-25-2025
    Location
    Presov, Slovakia
    MS-Off Ver
    2021
    Posts
    297

    Re: Timing Data Entry

    Hi Brian,
    for testing purposes, you could use indirect data entry = via userform.
    - textbox
    --- time starts to be measured from the first key press,
    --- time measurement ends when the last key is pressed,
    - combobox
    --- time starts to be measured by expanding the list,
    --- time measurement ends by clicking on the given record,

    The measured times and number of operations are recorded in sheet1.

    I also used a time limit in the attached file - to exclude cases where the worker goes for a coffee from the statistics.
    The program works on colored cells.
    m.s.
    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. Copy and paste data at specific timing using vba
    By Polxr in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 07-26-2019, 12:29 PM
  2. Refreshing Data timing issue (acDialog equivelant for Excel required)
    By AndrewBoast in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 08-01-2016, 05:43 AM
  3. [SOLVED] Timing delay & advance with Data validation & if statement.
    By excobra in forum Excel General
    Replies: 2
    Last Post: 05-22-2014, 07:32 AM
  4. Help getting a chart that shows the timing of data increments?
    By Valten1992 in forum Excel Charting & Pivots
    Replies: 0
    Last Post: 03-18-2014, 11:17 AM
  5. Replies: 0
    Last Post: 02-04-2014, 12:36 AM
  6. Vba for move data & clear entry screen for entry new data..
    By santosh226001 in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 09-27-2012, 09:19 PM
  7. Replies: 1
    Last Post: 03-16-2012, 12:01 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