D
DaGoon
To All,
Can I please trouble the group for some assistance?
I have a number field named "stoplength" in a table that I convert to
time with an append query as follows:
[stoplength]*60/1440
The append query adds the above results to the same table but in a
number field named "mindown"
When I display the sum of "mindown" on a form as follows:
="Total Downtime in Hours:Minutes - " & Format(Sum([MinDown]),"hh:mm")
The problem arises when the total downtime exceeds 24:00. Instead of
going to 25:34 it will just start again at 1:00.
The funny thing is that when I add a chart to this form the data
displays properly when it goes past 24:00. For the chart axis and the
data labels I am using the following format for the numbers: time
category and 37:30:55 for the type.
So, my question is, what is the syntax for the 37:30:55 type that
seems to work in the chart? Could it be as easy as using:
="Total Downtime in Hours:Minutes - " &
Format(Sum([MinDown]),"37:30:55")
Or, is there a custom format that I should be using?
Any and all help is greatly appreciated!
Can I please trouble the group for some assistance?
I have a number field named "stoplength" in a table that I convert to
time with an append query as follows:
[stoplength]*60/1440
The append query adds the above results to the same table but in a
number field named "mindown"
When I display the sum of "mindown" on a form as follows:
="Total Downtime in Hours:Minutes - " & Format(Sum([MinDown]),"hh:mm")
The problem arises when the total downtime exceeds 24:00. Instead of
going to 25:34 it will just start again at 1:00.
The funny thing is that when I add a chart to this form the data
displays properly when it goes past 24:00. For the chart axis and the
data labels I am using the following format for the numbers: time
category and 37:30:55 for the type.
So, my question is, what is the syntax for the 37:30:55 type that
seems to work in the chart? Could it be as easy as using:
="Total Downtime in Hours:Minutes - " &
Format(Sum([MinDown]),"37:30:55")
Or, is there a custom format that I should be using?
Any and all help is greatly appreciated!