Hi! I’m trying to calculate a formula field that looks at 2 different fields (# Benefits Remaining) and (End Date) and returns either “Active” or “Inactive”. If the # Benefits Remaining is >=1 OR the end date is after today, it is active. Some of our benefits have a specific number available and others last for a specific duration of time.
Here’s what I have so far - what am I doing wrong?
IF(
OR(
TODAY()<{End Date}),
({# Remaining}>=1),
),
“Active”,
“Expired”
)