formula - In excel 2013 how to use IF ELSE CONDITION? -


i want evaluate forms , in have used formula.

enter image description here

but in fields received blank result. want keep 0 value taking -2.

any set 0 blank, -2 no , 4 yes.

try nested if statement:

=if(f20 = "yes",4,if(f20 = "no",-2,0)) 

it first tests "yes" if false test if "no" if false returns 0.


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 -