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 t...