Hi there, I am using the following formula to calculate total donations received within a period of time:
IF(
AND(
YEAR({Received Date}) = YEAR(TODAY())
),
{Amount}
)
However, I would like to modify this, so that instead of “TODAY()” - which gives the current year (2020) , I can set a time period like March 1, 2020 to February 28, 2021 (which matches our financial year).
How do I do this in existing formula?