The following code does not ignore the empty field values.It provides the correct values when the fields do contain a time value (ie 10:20:35)
(for illustration purposes i used the first 4 fields only - are actually 8)
Any suggestion on how to ignore empty fields in this query please?
Code:
TotalTime3: Format$(Nz(CDate([lap1time]))+Nz(CDate([lap2time]))+Nz(CDate([lap3time]))+Nz(CDate([lap4time])),"hh:nn:ss")
Any suggestion on how to ignore empty fields in this query please?
Comment