SOLVED

If this then that formula

Copper Contributor

I am trying to figure out a formula that if P2 is >=1000 add 120 days to the date in M2 in cell O2, if P2 is <=999 add 90 days to the date in M2 in cell O2. I cannot seem to get it to return a correct answer. Any help is greatly appreciated.

 

=SUMIFS(M2,P2,">=1000",M2,120,P2,"<999",M2,90)

I'm 100% sure my formula is not even close.

3 Replies
best response confirmed by mandy barber (Copper Contributor)
Solution

That could be

=M2+90+IF(P2>=1000,30,)

I so appreciate you Sergei!! Thanks so much for your assistance.

You are welcome

1 best response

Accepted Solutions
best response confirmed by mandy barber (Copper Contributor)
Solution

That could be

=M2+90+IF(P2>=1000,30,)

View solution in original post