You seem to be aware you would use the DateDiff function, as it is in the
Subject line of your question. In a query:
ElapsedDays: DateDiff("d",[Field1],[Field2])
Field1 and Field2 are generic names for the date fields. Use your actual
field names. Likewise, ElapsedDays can be a name of your choice.
Alternatively, as the Control Source of an unbound text box:
=DateDiff("d",[Field1],[Field2])