I have 2 dates columns.
Column A & Column B
I need run the query and need show the number of days whose difference (A-B) is greater than 5.
Currently, I'm using DateDiff('d',[Date1],[Date2],Date()). By using this, I'm getting the difference of all the dates and their records. But I only...