I'm trying to build a formula that says if start date field is <= today & end date field is >= today or start date field is <=today & end date field is black then active checkbox = true
I'm trying to build a formula that says if start date field is <= today & end date field is >= today or start date field is <=today & end date field is black then active checkbox = true
The sugarLogic formula may looks like that:
or(and(isBefore($date_start, now()), isBefore($date_end, now())), and(isBefore($date_start, now()), equal($date_end, "")))
Regards
The sugarLogic formula may looks like that:
or(and(isBefore($date_start, now()), isBefore($date_end, now())), and(isBefore($date_start, now()), equal($date_end, "")))
Regards