in which I am looking for the number of instances of say Joe's completed records between two dates. but I cannot get Countif to Accurately calculate Countif when the date in the calculation is stored in a date cell. If I use the actual date in my formula calculation, everything is fine. But I want the user to be able to change the date without modifying the cell directly. I want to countif to be dynamic. Here's what happens if I do the calculation with the dates separately and coming from cells:
=COUNTIF(PadInsp:PadInsp, ">"11/1/2019") Result - 15 Where start date is 11/1/2019 and PadInsp goes from 10/1/2019 to 2/14/2020. There are 15 Actual instances
=COUNTIF(PadInsp:PadInsp, ">StartDate") Result - 0 Where StartDate is 11/1/2019 and PadInsp goes from 10/1/2019 to 2/14/2020. There are 15 Actual instances
I tried a working Excel formula which is
=COUNTIF(PadInsp:PadInsp, ">"&StartDate) Result in SS - Imparcible