if statement - Excel Formula for less than 60 but greater than 30 -


my current excel formula is:

=if([dvt contract end dates days left]<=0,"expired",if([dvt contract end dates days left]<60,"expiring soon","")) 

i want modify below :

remove days less 30 , marked expiring more 30.

try this

=if([dvt contract end dates days left]<=0,"expired",if(and([dvt contract end dates days left]>30, [dvt contract end dates days left]<60),"expiring soon","")) 

Comments

Popular posts from this blog

authentication - Mongodb revoke acccess to connect test database -

c - getting error: cannot take the address of an rvalue of type 'int' -

python - GitPython: check if git is available -