This formula is being accepted in a field, and is working:
IF({NOTES}=“to June 2022”,“Yes”,“No”)
but both of these more elaborate versions are being rejected:
IF(OR({NOTES} = “to Dec 2021”, {NOTES} = “Life”, {NOTES} = “Prepaid 2022-2023”), ”Yes", “No”)
IF(
OR(
{NOTES} = “to June 2022”,
{NOTES} = “to Dec 2021”
),
”Yes”,
“No”
)
Can anyone enlighten me on what I am doing wrong please?