Forum Discussion

RyanParr's avatar
RyanParr
Qrew Assistant Captain
6 years ago

Formula Help; Start Date + Term = End Date

I need help with a formula to identify and End Date.  Here are the three fields in play: 
  1. Start Date (Date)
  2. Term (Text Multi Select)
  3. End Date (Formula Date)

The Term represents months, not days. And it's a multi select because we want its values locked. 




------------------------------
Ryan Parr
------------------------------

4 Replies

  • AustinK's avatar
    AustinK
    Qrew Commander
    Your Term field is a Multi-Select field? As in multiple terms can be selected at one time inside the field? Or is it Multiple-Choice?

    Is there any other logic that needs to be applied here or are you just looking to find out what the end date is 3, 6 and 12(or whatever) months after the start date?
    • RyanParr's avatar
      RyanParr
      Qrew Assistant Captain
      Doh! It's a Text Multiple Choice field. No other logic is needed.

      i.e. Start Date 1/1/20 + Term ( Let's say 12) = 1/1/21

      ------------------------------
      Ryan Parr
      ------------------------------
      • AustinK's avatar
        AustinK
        Qrew Commander
        If the terms are always in months you can do this inside the End Date field:

        AdjustMonth([Start Date], ToNumber([Term]))

        This will be blank until there is a Date and a Term selected. The above is also with the assumption that your multiple choice field is only numbers in there. If it is numbers and text like "6 months" this will need a different solution.