S
Scott
On my form I have detailBeginTime and detailEndTime controls that contain
Medium Time format. To calculate actual minutes, I use the formula in FIGURE
1 and that works fine. My problem is in my form footer. I need a sum of the
minutes being calculated by FIGURE 1 formula on main form.
If the name of my calculated field in FIGURE 1 is called MINUTES, how can I
convert FIGURE 1 results to actual numeric value of minutes that can be
summed up on the form footer? FIGURE 2 shows my failed attempt. FIGURE 3
shows a sample record.
FIGURE 1
Format([detailBeginTime]-1-[detailEndTime],"Short Time")
FIGURE 2
Int(Format([detailBeginTime]-1-[detailEndTime],"Short
Time"))/60
FIGURE 3
detailBeginTime detailEndTime Minutes MyProblemControl*
6:00 AM 6:45 AM 45 .75
* shows what correct value should be
Medium Time format. To calculate actual minutes, I use the formula in FIGURE
1 and that works fine. My problem is in my form footer. I need a sum of the
minutes being calculated by FIGURE 1 formula on main form.
If the name of my calculated field in FIGURE 1 is called MINUTES, how can I
convert FIGURE 1 results to actual numeric value of minutes that can be
summed up on the form footer? FIGURE 2 shows my failed attempt. FIGURE 3
shows a sample record.
FIGURE 1
Format([detailBeginTime]-1-[detailEndTime],"Short Time")
FIGURE 2
Int(Format([detailBeginTime]-1-[detailEndTime],"Short
Time"))/60
FIGURE 3
detailBeginTime detailEndTime Minutes MyProblemControl*
6:00 AM 6:45 AM 45 .75
* shows what correct value should be