Good morning, Brains Trust!
I'm having issues with a formula and was hoping that people smarter than me might have some answers.
Objective,
To find out how many lines within a cell have a date that falls within the current calendar month.
Info,
The cell is named "Date added"
I have tried to use the formula "=COUNTIFS({Date added}, >=DATE(TODAY(), 1, 1), {Date added}, <=EOMONTH(TODAY(), 0))"
Essentially, these are my thoughts,
COUNTIFS: This function is used to count the number of cells that meet multiple criteria.
{Date added}, >=DATE(TODAY(), 1, 1): This criteria checks if the date in the "Date added" column is greater than or equal to the first day of the current month. DATE(TODAY(), 1, 1) gives the first day of the current month.
{Date added}, <=EOMONTH(TODAY(), 0): This criteria checks if the date in the "Date added" column is less than or equal to the last day of the current month. EOMONTH(TODAY(), 0) gives the last day of the current month.
This formula always returns the value #UNPARSEABLE.
I can't seem to see what I am doing wrong, and any help would be appreciated.
Regards,
Daniel