I am trying to reformat the data in MS Access, as the number of rows exceeds what Excel can do. However, this is my first attempt with subqueries and can do with some help in what I should do.
I have data that looks like this:
t, id, x 1, 10, 1 1, 20, 5 1, 30, 10 2, 10, 2 2, 20, 7 2, 30, 14
and I'm trying to translate it into this order:
id, t1, t2, x1, x2 10, 1, 2, 1, 2 20, 1, 2, 5, 7 30, 1, 2, 10, 14 ... 10, 70, 71, 66, 68
etc..
The data presented are distances and time values - so I want to reformat it above to then calculate the speed through (x2 - x1) / (t2 - t1).
Access can help with this? I was not too fussed about the need to use several tables / queries to achieve the final result ... Just as long as I get there.