how to nest several functions together

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
 
B

Byers

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
 
Top