how to nest several functions together

  • Thread starter Thread starter pboost1
  • Start date Start date
P

pboost1

I am not sure how do nest several functions together. Which would go o
the inside first? If I wanted several IF statements together, ho
would I do that? Thanks for any help that can be given
 
It will start with the outer one first. The structure of an if statmen
is that it's if(test value, return if true, return if false)

to nest that you do if(testvalue, return if true, if(testvalue, retur
if true, return if false))

so for the first if statment it tests it and returns that value if it'
true, if it's not true it goes into the second if statement.

you can only nest like 7 or 8 otherwise you get an error
 
Example: nesting if statements

IF(A1=1,"x",IF(A1=2,"y",IF(A1=3,"z","-")))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top