Help!

  • Thread starter Thread starter lola
  • Start date Start date
L

lola

Hi

I know this is probably really simple but i can't figure
it out! I have a column of prices, and i need to take away
35% from each of them but can't work out how i do this
have tried highlighting all the ones that i need to take
the percentage away from but can't find out how to take
this away.

any help would be really appreciated.

xx
 
Hi

Enter 0.65 into any empty cell and copy it
Select the range with data to convert, and then PasteSpecial.Multiply - OK
 
The macro below multiplies the current value by 0.65 and
then moves down to the next lower cell. (You could assign
a keyboard shortcut to it if you need to do it
repetitively.)

Sub Macro1()
ActiveCell.Value = ActiveCell.Value * 0.65
ActiveCell.Offset(1).Activate
End Sub
 

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

Similar Threads

Need to add semi colon in time numbers 1
Epic Games freebies 2
Help with calculation 1
Percentage - How silly I feel asking this question !!! 5
Giveaway Free Game: The Walking Dead - Season 1 14
Windows 10 Microsoft updates HELP 5
Windows 10 Itunes/TabKey 0
Securing an Excle File? 1

Back
Top