Hi all
I´m working on a simple sports-score sheet. The user will enter thing such as goals and penalties during a game and Excel will pull together some stats for a game summary.
I´ve formatted the time column as [mm]:ss with [] preventing roll-over to hours. However when the user enters 07:28 Excel will register it as 7 hours and 28 minutes, and only reads the time correctly if the user writes 00:07:28, which is cumbersome and will cause endless errors and eventually mutiny.
At another user group two different soultions were suggeted: One which involves using [hh]:mm instead which is not a bad idea but after adopting it my conditional count statements don´t work e.g.
works fine for [mm]:ss but not for [hh]:mm and changin the condition to ;">20:00:00"&"<=40:00:00") doesn´t help either.
The second solution involves using VBA which I´m sure is great but I do not have the time or energy to learn enough VBA to write edit or maintain such scripts (see
So I´m hoping someone here has a bright idea.
thanx beforehand
LL
I´m working on a simple sports-score sheet. The user will enter thing such as goals and penalties during a game and Excel will pull together some stats for a game summary.
I´ve formatted the time column as [mm]:ss with [] preventing roll-over to hours. However when the user enters 07:28 Excel will register it as 7 hours and 28 minutes, and only reads the time correctly if the user writes 00:07:28, which is cumbersome and will cause endless errors and eventually mutiny.
At another user group two different soultions were suggeted: One which involves using [hh]:mm instead which is not a bad idea but after adopting it my conditional count statements don´t work e.g.
Code:
=COUNTIF(Gamesheet!O9:P31;">20:00"&"<=40:00")
The second solution involves using VBA which I´m sure is great but I do not have the time or energy to learn enough VBA to write edit or maintain such scripts (see
So I´m hoping someone here has a bright idea.
thanx beforehand
LL