I have 3 date columns: Start Date, Draft Due Date, Final Due Date
The date columns are all initially auto-set to the same date; professionals are to subsequently update the Draft and Final due dates to a later date.
I would like to count the ones that never get updated, i.e. Draft Due Date = Start Date.
By the filters there is 20, however my summary formula shows zero with the following:
=COUNTIF([Draft Due Date]:[Draft Due Date], =[Start Date]:[Start Date])
I get #INVALID OPERATION with this formula:
=IF([Draft Due Date]:[Draft Due Date] = [Start Date]:[Start Date], 1, 0)
What will work?
Thank you!