Hey!
I've been messing with this formula for a bit, and I'm kinda stumped. I'm trying to count how many people have attended a course on a certain day. So, if "Attended" is checked on 1/23, then that should count as one person attending.
Columns Referenced:
Attended = Check
Date = Date format
=COUNTIFS(ISBOOLEAN({Attended}@cell), 1) = true), AND(IFERROR(ISBLANK({Attended}@cell), 0) = false), AND(IFERROR(YEAR(@cell), 0) = 2023), AND(IFERROR(MONTH(@cell), 0) = 1,) AND(IFERROR(DAY(@cell), 0) = 23))
Many thanks to anyone who even took time to read this! :)