Hello,
I'm trying to write a Summary Field formula that will count the number of unique days in the Created date (titled Date Added) system column without using a helper column or metric sheet.
I am able to get the correct total, and the list of dates counted, when I use the Analyze data AI Tool:
However, I'm not having any luck using a formula to find the total.
Here's what I've tried (with the help of the Formulas AI Tool):
=COUNT(DISTINCT([Date Added]:[Date Added])) - returns a total of 268
=COUNT(DISTINCT(DATEONLY([Date Added]:[Date Added]))) - returns a total of 1
=COUNT(DATEONLY([Date Added]:[Date Added])) - returns a total of 1
=COUNTIF([Date Added]:[Date Added], DATEONLY(@cell) = DATEONLY([Date Added]@row)) - #UNPARSEABLE
Any help would be greatly appreciated!