IRR Calculation question

L

Les

Hi all,
I am doing the calculation below and it works great, with the exception that
if the value i get out is too high it goes to "#NUM!". is there a way to
prevent this and put a text in "Value to High" ??

=IF(premises!F12="no",IRR('NPV calculation'!E121:L121),IRR(F122:L122))

Any help would be greatly appreciated.
 
R

ryan

just enclose what you already have inside another if statement, like so:

=if(iserror(<your_formula>),"Value is too high",<your_formula>)

long and cumbersome, i know, but the simplest answer to your question.
 
L

Les

Thanks Ryan.
--
Les


ryan said:
just enclose what you already have inside another if statement, like so:

=if(iserror(<your_formula>),"Value is too high",<your_formula>)

long and cumbersome, i know, but the simplest answer to your question.
 

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

Top