J
jim
Can anyone sugget a way of getting around limit to 7
nested IF statements?
thanks
jim
nested IF statements?
thanks
jim
Can anyone sugget a way of getting around limit to 7
nested IF statements?
ron
Have a look at Chip Pearson's named range method of getting around the limit
of 7 nested ifs.
http://www.cpearson.com/excel/nested.htm
Gord Dibben Excel MVP
One way to effectively double the number of if statments allowed is to
use an "AND" or "OR" statment. For example, I wanted to apply if
statments for if value=x, divide a1 by 8. If value =y, divide a1 by 9.
You can say if a1 is greater than or equal to 2 but less than 8, then
do if statment1, if statment2...if statment7
Set the FALSE value for the AND statment to if statment8...if statment
14.
It only works on values you can get a true, false from an and or or
statment. I suppose you could put several and/or statments in the
original if statment.