Hi guys this is my first post so sorry if it is the wrong section (I tried lol)
Iv'e got a DateDiff calculation in a query for my A Level project, trouble is intead of it giving me the actual days between my two desired dates it gives me the actual date between the first date and the date today
BTW this is what it looks like in SQL view: SELECT TBLBIKE.BIKE_ID, TBLBIKE.[CUSTOMER_ID*], TBLBIKE.BSTARTDATE, TBLBIKE.BNAME, TBLBIKE.BEQUIP, TBLBIKE.BDEADLINE, DateDiff("D", [BSTARTDATE],Date()) AS ACTUALDAYS
FROM TBLBIKE;
I would like it to workout the days between BSTARTDATE and BDEADLINE
Any help muchos appreciated!