Calculated Field based on Two Dates

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

Parents
  • 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

    André Lopes
    Lampada Global
    Skype: andre.lampada
Reply
  • 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

    André Lopes
    Lampada Global
    Skype: andre.lampada
Children
No Data