if then statements

B

BC

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?
 
C

Conan Kelly

BC

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

for example:

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

or

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

HTH,

Conan Kelly
 
Top