Yvia, try this formula:
IF(
MONTH({END Date}) = MONTH(TODAY()),
IF(
YEAR({1st Payment Date}) = YEAR(TODAY()),
"Yes, same month and year",
"Same month, different year"),
"Not same month"
)
Yvia, try this formula:
IF(
MONTH({END Date}) = MONTH(TODAY()),
IF(
YEAR({1st Payment Date}) = YEAR(TODAY()),
"Yes, same month and year",
"Same month, different year"),
"Not same month"
)
Thanks, Ron!
How about if I want to have month and year in single sentence formula for 1st payment?
IF( MONTH({1st Payment Date}) = MONTH(TODAY()),"This Month")
IF( YEAR({1st Payment Date}) = YEAR(TODAY()),"This Year")
Thanks, Ron!
How about if I want to have month and year in single sentence formula for 1st payment?
IF( MONTH({1st Payment Date}) = MONTH(TODAY()),"This Month")
IF( YEAR({1st Payment Date}) = YEAR(TODAY()),"This Year")
That would be the same formula, just changing the month-checking field from "END Date" to "1st Payment Date" :
IF(
MONTH({1st Payment Date}) = MONTH(TODAY()),
IF(
YEAR({1st Payment Date}) = YEAR(TODAY()),
"Yes, same month and year",
"Same month, different year"),
"Not same month"
)

That would be the same formula, just changing the month-checking field from "END Date" to "1st Payment Date" :
IF(
MONTH({1st Payment Date}) = MONTH(TODAY()),
IF(
YEAR({1st Payment Date}) = YEAR(TODAY()),
"Yes, same month and year",
"Same month, different year"),
"Not same month"
)

Thanks Ron!