• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Problem of # NUm!

saadferoze

New Member
Dear Members,


While running the sensitivity analysis, there are few output numbers which are negative in excel are shown as # Num!. how can i have the negative number display as it is instead of showing #Num!


Its urgent, can any one help/


Regards

Saad
 
This is basically when i am running sensitivity analysis on different tariff rates to check IRR on them and when IRR at a particular valye goes below 0%, it shows #NUM!.
 
Excel will not display a negative number as #Num!

#Num! normally means that


1) You might have supplied a wrong data type to the argument in a formula that requires a numeric value.


2) The formula that you entered might use a function that iterates, such as the RATE and the IRR functions and these functions cannot produce a result.


3) The result produced by a formula might be a number that is too small or large that excel cannot represent in a cell.


To fix this requires fixing the logic of the equation


Can you post the equation producing the error and maybe some data if applicable.
 
Thanks Hui, Basically its a financial model where i provide inputs like tariff rate and whole model drives on the basis of it. Cost which is given is also constant. However when i run the sensitivity analysis on range of tariff rate, it shows results till a particular tariff rate and then shows #num after a particular tariff rate.


I am running it on IRR, so irr values after particular tariff shows up #Num!. i dont think there is any data type problem or formula problem. Dont know how to solve. Shall i send the model to your email id.
 
Have a read of http://www.itechtalk.com/thread10227.html

It particularly discusses the IRR formula
 
Thanks hui, i did check this and tried to solve it but not able to resolve the issue. Any idea why? Your help is always appreciated
 
Hi, saadferoze!


In the built-in help for function IRR you can find references to #¡NUM! values. Just select a blank cell, type =IRR( and press the "f(x)" button at the left of edit bar, and then choose "Help about this function" at bottom right.


If you can handle spanish, this is what I get:


-----

[pre]
Code:
TIR (función TIR)

En este artículo, se describen la sintaxis de la fórmula y el uso de la función TIR en Microsoft Excel.

Descripción

Devuelve la tasa interna de retorno de los flujos de caja representados por los números del argumento valores. Estos flujos de caja no tienen por que ser constantes, como es el caso en una anualidad. Sin embargo, los flujos de caja deben ocurrir en intervalos regulares, como meses o años. La tasa interna de retorno equivale a la tasa de interés producida por un proyecto de inversión con pagos (valores negativos) e ingresos (valores positivos) que se producen en períodos regulares.

Sintaxis
TIR(valores; [estimar])
La sintaxis de la función TIR tiene los siguientes argumentos:
Valores    Obligatorio. Una matriz o una referencia a celdas que contienen los números para los cuales desea calcular la tasa interna de retorno.
El argumento valores debe contener al menos un valor positivo y uno negativo para calcular la tasa interna de retorno.
TIR interpreta el orden de los flujos de caja siguiendo el orden del argumento valores. Asegúrese de escribir los valores de los pagos e ingresos en el orden correcto.
Si un argumento matricial o de referencia contiene texto, valores lógicos o celdas vacías, esos valores se pasan por alto.
Estimar    Opcional. Un número que el usuario estima que se aproximará al resultado de TIR.
Microsoft Excel utiliza una técnica iterativa para el cálculo de TIR. Comenzando con el argumento estimar, TIR reitera el cálculo hasta que el resultado obtenido tenga una exactitud de 0,00001%. Si TIR no llega a un resultado después de 20 intentos, devuelve el valor de error #¡NUM!
En la mayoría de los casos no necesita proporcionar el argumento estimar para el cálculo de TIR. Si se omite el argumento estimar, se supondrá que es 0,1 (10%).
Si TIR devuelve el valor de error #¡NUM!, o si el valor no se aproxima a su estimación, realice un nuevo intento con un valor diferente de estimar.

Observaciones

TIR está íntimamente relacionado a VNA, la función valor neto actual. La tasa de retorno calculada por TIR es la tasa de interés correspondiente a un valor neto actual 0 (cero). La fórmula siguiente demuestra la relación entre VNA y TIR:

VNA(TIR(B1:B6);B1:B6) es igual a 3,60E-08 [Dentro de la precisión del cálculo TIR, el valor 3,60E-08 es en efecto 0 (cero).]
[/pre]
-----


Regards!
 
Back
Top