I have a form that has a number of date fields. The data is imported from an SQL database locally. The data imported includes the date and time. However I am only interested in the date, not the time. I also have fields on my form that display the calculate the differnce between the dates, so I have to keep the format of the field as date/time. My problem is, my query that calculates the difference may not be accurate because it takes into account the time piece. My question is how is the best way to elminiate this. Is there some property I can change on the format of the date field? Attached is an image of my properties. Or is there somethign I can change in my query shown below to only take into account the Date and not the time?
DAYS_OPEN: IIf([Status]="In Progress",(Date()-[START_DATE])-[DAYS_STOPPED],([APPROVAL_DATE]-[START_DATE])-[DAYS_STOPPED])
Thanks,
Jim
DAYS_OPEN: IIf([Status]="In Progress",(Date()-[START_DATE])-[DAYS_STOPPED],([APPROVAL_DATE]-[START_DATE])-[DAYS_STOPPED])
Thanks,
Jim