Percentages

E

elusiverunner

Hello

I have a formula that adds two values together and then I want to add 10
percent. I just don't seem to be able to find how to get Excel to calculate
the percentage of two values added together so far I have the following
=IF(OR(D2="",E2=""),"",D2+E2)
 
D

Dave Peterson

=IF(OR(D2="",E2=""),"",1.1*(D2+E2))


Hello

I have a formula that adds two values together and then I want to add 10
percent. I just don't seem to be able to find how to get Excel to calculate
the percentage of two values added together so far I have the following
=IF(OR(D2="",E2=""),"",D2+E2)
 
Top