I have a query that deducts a number from another number and gives me the difference:
Actual Hours: [tblClientBookingForm]![ActualReturnTime]-[tblClientBookingForm]![ActualPickTime]
i.e. 19.09 - 9.00 result 10.09
I then do another query that "should" deduct a number from the result i.e. 10.09 - 8.00 result "should" be 2.09
Expr16: [Actual Hours]-[HoursBooked]
I am using number format not date format in all the entries, but when I execute I get the error message below:
"Syntax error (missing operator) in query expression 'Actual Hours - [tblClientBookingForm].[HoursBooked]
What am I doing wrong ????