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

php - Wordpress website dashboard page or post editor content is not showing but front end data is showing properly -

How to get the ip address of VM and use it to configure SSH connection dynamically in Ansible -

javascript - Get parameter of GET request -