Hi there,
I have a simple need I think.....
I need to set up a query that takes the difference between 2 dates and returns the difference as number. My table, let's call it (Data) has 8 fields, 2 of which are date fields (Date1, Date2). I want the query to show all 8 fields, plus a calculated field that shows the number of days between Date1 and Date2
I tried this below, to no avail. (I know this is probably way off)
SELECT Field1, Field2, Field3, Field4, Field5, Field6, Date1, Date2
FROM Data
BETWEEN Date1 AND Date2 AS DaysBetween
Any help is appreciated. Thanks