How Do I?

S

Sally

I have a column of numbers that I want to multiply all
those numbers by a certain figure. Can this be done.

I currently have 3 columns #1 is a list price, #2 is a
discount multiplier #3 is our price. The formula I now
have for column #3 reads =if(isblank(E3,"",D3*E3).

What if anything can I do to this formula to have 20%
added to the figure in column #3. I tried =if(isblank
(E3,""(D3*E3)*20%) but that didn't work.
 
K

Ken Wright

With your multiplier in F1, you can use the following:-

=IF(D3="","",D3*E3*$F$1) and copy down.

Note though, in this cae the multiplier would have to be 120%. If you just wanted to put 20% into
the cell, then amend to the following:-

=IF(D3="","",D3*E3*(1+$F$1))
 
T

Thomas

Missed that but either range * percent + range would also work or
range * 1 + percent as you pointed out.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top