percentage

  • Thread starter Thread starter me
  • Start date Start date
M

me

Hi,

I have a column with prices and I want to increase 15% to each price.
How do I do this?
Please help ASAP.
Thanks!
 
Hi,

In a cell enter 1.15 and copy it.

Select the data to multiply them
Edit|Paste Special
Select multiply
Click OK
Delete the cell with 1.15 in

Mike
 
1. in an unused cell enter 1.15
2. copy the cell
3. Edit > PasteSpecial > Multiply onto the column
 
One way
Sub addtocol()
For Each c In Range("e2:e" & _
Cells(Rows.Count, "e").End(xlUp).Row)
c.Value = c.Value * 1.15
Next
End Sub
 
use an axuxiliar cell with 1.15

copy it, and past special - values multiply

hth
--
regards from Brazil
Thanks in advance for your feedback.
Marcelo



"me" escreveu:
 
ok, so just to mek sure I'm doing it right.
what will the anser to:
13.50 + 15%?
 

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

Back
Top