View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
macropod macropod is offline
external usenet poster
 
Posts: 329
Default Function condition statement

Hi David,

Try:
=IF(B14=0,"Perfectly inelastic Demand",IF(B14<1,"Inelastic",IF(B14=1,"Unit-elastic","Elastic")))
Note: Negative values not handled. If you need to treat negative & positive values the same way, use absolutes (i.e. change all the
'B14' references to 'ABS(B14)'). To treat negative values as 0s, change 'B14=0' to 'B14<=0'. to eliminate negative values
altogether, wrap the above in 'IF(B14<0,"", ... )'

Cheers

--
macropod
[MVP - Microsoft Word]


"IIDavidJII" wrote in message ...
| Trying to create an aid for my micro economics work for Price Elasticities.
| I need to create a conditional statement in absolute value for the following;
|
| For the cell b14 (Price Elasticity Demand)
|
| B14=0,"Perfectly inelastic Demand"
| B14=1,"Unit-elastic"
| B141,"Elastic"
| B14<1 and 0, "Inelastic"
|
| *all numbers need to be displayed in Absolute Value