adding travel times without regards for timestamp

I was asking because I may need to add more days data and if I were to do that then maybe I would have to add a date column to distinguish the timestamps
That could call for rewriting code - and I might not be available to help.

You're probably better off updating the TimeStamp column as to include the date portion of the time. If you do so, the VBA code could probably remain intact.
 
No, I wanted the two to be displayed side by side in a table format in order to compare them.
Your original form only calculated one value at a time. How can I display one value "in a table format side by side in order to compare them" ???

So I built you a table where I calcuate ALL the values. True, I didn't add any logic to display this table (because I felt that I had done enough).

By the way, I don't use the navigation buttons at the bottom - I dont' code for those. Not my style.

The posted TT in the table is the same as TTT but no stepping up. The information you gave me for the CalculateAll table is mostly right. It has the information side-by-side like I need amd it seems to calculate the posted travel time correctly but there are a few instance where the TTT doesn't appear to be calculating correctly.
Maybe give me some specific examples where it is wrong, so I can debug. I was planning for you to do the debugging, but maybe I can give it a shot.

I mentioned in a previous post that I have two forms in two different DB's that each calculate the posted TT and the TTT but I wanted to combine them in a table form to compare them. I will attach them. The posted from yesterday at 1:00 will explain what each does. (11-3-08 is TTT, 11-5-08-test is the posted)

The two forms look identical so i don't see the relevance. Maybe there's some differenence in the coding (which I am not eager to study at this moment).
 
If you need to display a table on the form, you can drop a listbox onto it.

Attached is a section of my notebook explaining how to populate a listbox using VBA. Basically it's two lines of code.

lb.RowSource = "SELECT col1, col2 FROM Table1 ORDER BY Col1, Col2"
lb.Requery

I noticed you haven't provided any specific examples where my logic miscalculated. I won't do any debugging until you do.
 

Attachments

[/quote]
The two forms look identical so i don't see the relevance. Maybe there's some differenence in the coding (which I am not eager to study at this moment).[/quote]

the only difference is I deleted the line:

miscRS.Filter = "segTimeStamp = #" & currTime & "# AND segment >" & currSegment
 
If you need to display a table on the form, you can drop a listbox onto it.

Attached is a section of my notebook explaining how to populate a listbox using VBA. Basically it's two lines of code.

lb.RowSource = "SELECT col1, col2 FROM Table1 ORDER BY Col1, Col2"
lb.Requery

I noticed you haven't provided any specific examples where my logic miscalculated. I won't do any debugging until you do.

Just a couple instances I noticed, for example at 3:20 pm a few of the segments starting with 8-15. 9-15, 10-15, 11-15 to 14-15 all display the same TTT. I can attach the DB I ran and you can see tomorrow and show you the examples if you are willing to help with that.

It's really weird because it's only for some segments at random times and don't see how that happens that the TTT is miscalculated. Thank you
 
Finding the line with the problem wasn't hard (but I'm not sure yet how to fix it).
Here's how I found the problem. I exported the source data to Excel. In Excel, select Data > AutoFilter. This places filter menus in the column names. Using a filter menu, I selected 3:20 PM (this hides all rows but those for 3:20 PM). I pasted these rows for 3:20PM into another sheet (Sheet1). Then I likewise added, into Sheet1, the rows for 3:25Pm.

Going back to Access, I deleted all the rows from the source table, and then imported Excel Sheet1.

The result is that I was able to run the loop for 3:20 pm alone (this runs in the blink of an eye).

I find that when the totalTime exceeds 300 seconds, totalTime doesn't further increment. That means this condition is failing:

ElseIf rsAllData!TimeStamp = steppedUpTime And totalTime >= 300

In my next post I'll explain why I am having difficulty "fixing" this line - to me it seems correct.
 
Could someone help me with this? I can't understand why this line of code is failing.
ElseIf rsAllData!TimeStamp = steppedUpTime And totalTime >= 300
Because, in the debugger, the output looks correct. The condition should prove true. Here's what the debugger says when I set it to break after the 300-seconds mark. First of all, it confirms that totalTime >= 300:

? totalTime
346.442688596414

? totalTime >= 300
True

Obviously, then, it's the other condition which is failing.

? rsAllData!TimeStamp = steppedUpTime
False

Why False? Here's how the debugger outputs each of those times, in military time (3:25 PM):

? Format(rsAllData!TimeStamp, "MM/DD/YYYY hh:mm:ss")
12/30/1899 15:25:00

? Format(steppedUpTime, "MM/DD/YYYY hh:mm:ss")
12/30/1899 15:25:00

The two dates are equal down to the second !!! So why is the debugger stating "False" ??? Maybe there is somehow a difference in milliseconds, but I don't know how to extract milliseconds in Access.

Anyone?
 
Well, I never figured out the discrepancy so I now propose a different solution. I changed the line to this:

ElseIf totalTime >= 300 And rsAllData!FormattedTimeStamp = steppedUpTime

Where the value FormattedTimeStamp is obtained by adding this clause to the original query:

(SELECT)....FORMAT(CDate(SegTimeStamp), 'MM/DD/YYYY hh:mm:ss') as FormattedTimeStamp

The comparision now returns True instead of False because I am now working directly with:

'MM/DD/YYYY hh:mm:ss'

Attached is the updated code. Run it again, and let me know if it is calculating correctly.
 

Attachments

In fact, I'm uploading the 3:20 PM data so that you can begin your evaulation there.
 

Attachments

Ok wow man that seems to work just great thanks you so much...you also mentioned if I wanted to add multiple days of data just add the date with the timestamp and the code should remain unaffected??

Again unbelieveable thanks
 
Ok wow man that seems to work just great thanks you so much...you also mentioned if I wanted to add multiple days of data just add the date with the timestamp and the code should remain unaffected??
Well, that's my theory anyway. But above we just saw how subtle the bugs can be. I'm not smart enough to be sure about a theory until real testing has confirmed it. Here's one possible test.

(To make this test run faster, do all this work on the 3:25 pm subset of the data that I uploaded). Right click the table and copy it to create TravelSegmentsCopy (or whatever). Then do something like this (in sql View) - adds 30 days to each of the times.
UPDATE TravelSegmentsCopy SET SegTimeStamp = SegTimeStamp + 30


Then add this table to the original so that you now have double the data.


INSERT INTO TravelSegments SELECT * FROM TravelSegmentsCopy


Now run the code again, and check the results. Check at least one sample of the original data, and one sample of the plus-30 days data. If it fails, let me know, and maybe I'll get a chance to debug it.
 
Sorry it took so long to reply...I haven't tried this yet cuz I can only open your file as a read-only file but when I get to the last stages of this project I will be adding more travel time data from different days, probably about 3 months worth, and will have the run the code for that many days.

So I think, and correct me if I'm wrong, couldn't we just modify the CalculateAll table to include the date AND time and then the code shouldn't have to be changed. Then when we selected timestamp in the form it will also include the date.

I know I made that sound easy and I'm sure it isn't so, but I just wanted to get your thoughts..Thanks
 
I think, and correct me if I'm wrong, couldn't we just modify the CalculateAll table to include the date AND time and then the code shouldn't have to be changed.
As I said, that's my theory, but it needs testing.
 
ok so once I load all the 3 months data into my DB, then try your method and then run the code, then it should work?
 
Alright well I will try small scale test, first, the way you explained before with just a few timestamps and then get back to you and let you know the results
 
(To make this test run faster, do all this work on the 3:25 pm subset of the data that I uploaded). Right click the table and copy it to create TravelSegmentsCopy (or whatever). Then do something like this (in sql View) - adds 30 days to each of the times.
UPDATE TravelSegmentsCopy SET SegTimeStamp = SegTimeStamp + 30


Then add this table to the original so that you now have double the data.


INSERT INTO TravelSegments SELECT * FROM TravelSegmentsCopy


Now run the code again, and check the results. Check at least one sample of the original data, and one sample of the plus-30 days data. If it fails, let me know, and maybe I'll get a chance to debug it.

Ok so I copied the data and made the table TravelSegmentsCopy and transferred that to a query so I could insert the line in SQL view you mentioned above.

I'll explain what I did: I put the TravelSegmentsCopy in the query, selected SegTimeStamp to update, then tried to input your UPDATE line in SQL view but couldn't get the query to run. It's giving me an empty query, no data at all.

I'm still a little confused, should I input more days data other than just the one day that is provided in your example? That wasn't really clear.

Is this how you proposed I do it or am I doin something terribly wrong?
 
Ok so I copied the data and made the table TravelSegmentsCopy and transferred that to a query so I could insert the line in SQL view you mentioned above.
As for the boldfaced words, huh? I don't know what that means. I asked you to copy the table. I don't recall saying anything about "transfer the table to a query" nor do I know what such words mean.


I'll explain what I did: I put the TravelSegmentsCopy in the query.........
huh?

Maybe you're using the editor or the wizards. I don't use those. I use one thing. Pure CODE. Period.


.......selected SegTimeStamp to update, then tried to input your UPDATE line in SQL view but couldn't get the query to run. It's giving me an empty query, no data at all.
Just paste the CODE into SQL View of a new query replacing any code that may or may not be there. Don't select anything from menus, wizards, or windows.

Then choose the menu item Query > Run.

Problem is I just tried it. First it says, "You are about to UPDATE 30 rows. Proceed?" Then it gives me an error. This is an annoyance that has been irritating me since this thread started. You have the TimeStamp column as "Text" (String) rather than "Date". Hence it doesn't know I mean 30 days:


UPDATE TravelSegmentsCopy SET SegTimeStamp = SegTimeStamp + 30

I guess you'll have to do it like this:


UPDATE TravelSegmentsCopy SET SegTimeStamp = Cstr(CDate(SegTimeStamp) + 30)


When you run it, an UPDATE query doesn't return any data. So you won't see any "confirmation" necessarily - but if you go to the table you should see the results.


The next task is to take these rows of TravelSegmentsCopy and insert them into TravelSegements using an INSERT query. I'll try it right now.
 
The INSERT query worked just fine - again just paste the code and run it (run it only once otherwise you'll get dup data inserted).

INSERT INTO TravelSegments SELECT * FROM TravelSegmentsCopy

Again, you won't see any confirmation.

Now that you' ve got this data into TravelSegments, run the Form again, and let me know if the figures come out wrong.
 
Just paste the CODE into SQL View of a new query replacing any code that may or may not be there. Then choose the menu item Query > Run.

Problem is I just tried it. First it says, "You are about to UPDATE 30 rows. Proceed?" Then it gives me an error. This is an annoyance that has been irritating me since this thread started. You have the TimeStamp column as "Text" (String) rather than "Date". Hence it doesn't know I mean 30 days:


UPDATE TravelSegmentsCopy SET SegTimeStamp = SegTimeStamp + 30

I guess you'll have to do it like this:


UPDATE TravelSegmentsCopy SET SegTimeStamp = Cstr(CDate(SegTimeStamp) + 30)

I pasted the code exactly as you have it here and I got the same message about "updating 30 rows" "Proceed?"

Then got the error "MS Access can't update all the records in the update query. MS Office Access didn't update 30 fields due to a type conversion failure, 0 records due to key violations, 0 records due to lock violations. and 0 records due to validation rule violations"

So any ideas there? I guessing that's the same error you got when you tried also.
 

Users who are viewing this thread

Back
Top Bottom