I am setting up for a select query, a column that if the difference between two dates is exactly (down to day) 6 years apart or more then return a 1 if not then 0. I've set up an iif(datediff("y",date1column,date2column)>=2191,1, 0) but I'd like for it to be completely accurate as I know due to slight differences, leap year etc it doesn't always lead to 6 years=2191. Would anyone have a suggestion so I could have this query have more certainty in being 6 years or more apart? Thanks