View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Conan Kelly Conan Kelly is offline
external usenet poster
 
Posts: 419
Default if then statements

BC

=IF(financial condition calculated in a cell, alpha numberic result, run
another calculation and show that result in the cell)

for example:

=IF(A110,"Your financial condition is true",A1*8.5)

or

=IF(A110,A1*7.5,"Your financial condition is false")

HTH,

Conan Kelly




"BC" wrote in message
...
Based on a financial condition calculated in a cell, I either want to
display
an alpha numberic result or want to run another calculation and show that
result in the cell. How is that done?