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.