benlinkknilneb
Programmer
I've got an excel spreadsheet report that my team creates... takes a lot of work to run the report each month. We aren't sure how widely it's being used... if we ask, users say "oh this is critical to us" but we've had mistakes go out before that took them *months* to catch. So... this month, I added a quick & dirty logging system to the spreadsheet that writes to a publicly-accessible location on our network whenever the users open/close the workbook, and whenever they move from one tab to another. Just to see what they're up to....
My records look like this:
3/20/2013 9:09:06 AM;bob;Open Workbook
3/20/2013 9:09:08 AM;bob;Tab 6
3/20/2013 9:09:18 AM;bob;Tab 3
3/20/2013 9:09:25 AM;bob;Tab 9
3/20/2013 9:09:55 AM;bob;Close Workbook
I've imported this information into an access table and I'd like to query it in a way that gives me this information:
bob; Tab 6; 0:00:10
bob; Tab 3; 0:00:07
bob; Tab 9; 0:00:30
Any ideas how I might pull this off without resorting to VBA?
Ben
Windows isn't the answer; it's the question. NO is the answer.
My records look like this:
3/20/2013 9:09:06 AM;bob;Open Workbook
3/20/2013 9:09:08 AM;bob;Tab 6
3/20/2013 9:09:18 AM;bob;Tab 3
3/20/2013 9:09:25 AM;bob;Tab 9
3/20/2013 9:09:55 AM;bob;Close Workbook
I've imported this information into an access table and I'd like to query it in a way that gives me this information:
bob; Tab 6; 0:00:10
bob; Tab 3; 0:00:07
bob; Tab 9; 0:00:30
Any ideas how I might pull this off without resorting to VBA?
Ben
Windows isn't the answer; it's the question. NO is the answer.