• Adding a custom SugarLogic to use as in a dependency

    The article " Extending Sugar Logic " provides some guidance on building a Sugar Logic function. We would like to add a dependency to check our Permissions module. Is it possible to use `App.api.call("read")` to return a boolean indicating whether the…
  • Problem with calculated fields Updating automatically

    Hi, I am trying to create a calculated checkbox field names isLastMonth which return true if the given date is from last month. I used this sugar Logic to execute it. ifElse(isWithinRange(monthofyear(today()),2,12), ifElse(equal(subtract(monthofyear…
  • Obtain Team Name Using Sugar Logic

    Does anyone know how to get the Team Name for a record with Sugar Logic using the Formula Builder? I believe I could manually update the Extension file for the field, but if someone wants to update the formula at a later date, they will get an error if…
  • Concatenate Formula in Sugar Logic using Relate Field Types

    Does anyone know if it's possible to use the concatenate formula in Sugar Logic with Relate field types? It works with other field types, but when I try to use a relate field type, it says the field name is unknown. It looks like I will need a custom…