How do I sum with a cell that is a formula

T

T. Valko

Remove the quotes from around any numbers in your formula.

Right:

=IF(A1="x",10,0)

Wrong:

=IF(A1="x","10","0")
 
Top