Jul 09, 2022 04:31 PM
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’))
Jul 10, 2022 07:12 PM
IF(
OR(
NOT({DeStaging Date}),
{DeStaging Date} > {Monthly Rental Fee Renewal Date}
),
DATEADD({Staging Date},46,'days')
)
Jul 11, 2022 07:37 AM
Thank you so much!!! I greatly appreciate it!!