Skip to main content

Formulas using dates

  • July 9, 2022
  • 2 replies
  • 24 views

Nedra_Hines
Forum|alt.badge.img+10

Hello everyone! I need to modify a formula that I have because I want to calculate a result in column A when B is greater than C AND also if B is blank. This is the formula I’m currently using and it needs modification: IF({DeStaging Date}<{Monthly Rental Fee Renewal Date},BLANK(),DATEADD({Staging Date},46,‘days’))

2 replies

Kamille_Parks11
Forum|alt.badge.img+27
IF(
  OR(
    NOT({DeStaging Date}),
    {DeStaging Date} > {Monthly Rental Fee Renewal Date}
  ),
  DATEADD({Staging Date},46,'days')
)

Nedra_Hines
Forum|alt.badge.img+10
  • Author
  • Inspiring
  • 24 replies
  • July 11, 2022
IF(
  OR(
    NOT({DeStaging Date}),
    {DeStaging Date} > {Monthly Rental Fee Renewal Date}
  ),
  DATEADD({Staging Date},46,'days')
)

Thank you so much!!! I greatly appreciate it!!