Hi Arnelgp, yes I think that's it, I wasn't sure at first but now I see every runner once and the event when they achieved their fastest time. That's fabulous thank you so much.
Homage to ebs17 and MajP also,
I think it was my poorly worded question that caused any confusion but thanks to you...
Sorry to cause you pain ebs17, you may like to try some Keats if my poetry is not to your taste. Thank you very much for your help, I have made some progress now once I'd typed in the SQL you supplied me exactly as you'd supplied it and without my typos and errors.
MajP Thanks also,
I have...
Well you make some good points, even if I do feel like I'm getting beaten up.
I'm glad you like my rhyming, I'm probably a better artist than scientist as you may tell.
How I come up with such thoughts is a long and complicated story which I am describing in my current novel. I'll be sure to...
TotalSeconds is a calculated field
SELECT
T.*
FROM
tblResults AS T
INNER JOIN
(
SELECT
RunnerRef,
EventRef,
MIN([h]*3600+[m]*60+=DMin("[h]*3600+[m]*60+) AS MinTime
FROM tblResults GROUP BY RunnerRef,EventRef)...
I would like to determine the minimum time as personal best for each runner from a number of events. I would then like to pick out this value to provide a subset of data only displaying the runners and their fastest time.
Is it better to use a query or vba? I’m struggling with both. If I use...
Thanks again,
All the points you mention are very relevant to my situation, I guess Access is so massive (probably true of a lot of software) that there's so much to explore in the depth of it. The examples you provide MajP are incredibly useful, I can put those into practice from now on. I...
Hello,
I fear I have been dabbling again and am stuck despite good progress made in my application for my running club thanks to the help from this forum.
I am getting frustrated now as I frequently meet this decimal place problem.
I have been able to overcome this previously by simply...
Thank you so much June7, you've fixed it. I'd only referenced the main form and forgotten to reference the subform
It was forms!frmRunnersAndClubs!txtRunner
It should be forms!frmRunnersAndClubs!frmRunnersAndClubsSubform!txtRunner
All works fine now and thanks for the heads up on the better...
I have noticed some posts very similar to my question, apologies if I am duplicating but I couldn't see quite the same issue I am having.
I have a subform in continuous forms view with a list of runners each with an autonumber PK RunnerRef
The text box control (txtRunner) with this pk as the...