How to update a column of numbers?

C

cutie_pyie

Hi all,
I need to know how to update a column of numbers (dollars & cents values) in
MS Excel.

I have a rather large/long column of numbers consisting of dollars & cents
in MS Excel - I want to be able to select a certain number of cells/rows in
the column and increase the amounts in each cell by a fixed percentage.
IE: Column A, rows 1-125 have different values in each cell,
I want to increase each cell amount by 20%.
Column A, rows 126-300 - I want to increase each cell amount by 25%.

Can anyone please help me to do this?

Thanks a bunch!!!
Cindy
 
J

JE McGimpsey

cutie_pyie said:
Hi all,
I need to know how to update a column of numbers (dollars & cents values) in
MS Excel.

I have a rather large/long column of numbers consisting of dollars & cents
in MS Excel - I want to be able to select a certain number of cells/rows in
the column and increase the amounts in each cell by a fixed percentage.
IE: Column A, rows 1-125 have different values in each cell,
I want to increase each cell amount by 20%.
Column A, rows 126-300 - I want to increase each cell amount by 25%.

One way (if fractional cents don't matter, or if you have 'Set precision
as displayed' set in Preferences/Calculation):

In a blank cell, enter 1.2. Copy the cell. Select A1:A125. Choose
Edit/Paste Special, selecting the Values and Multiply radio buttons.
Click OK.

Use a similar procedure on A126:A300, using 1.25.

If you need to round to the nearest penny:

In a blank column (say B) enter

B1: =ROUND(A1*1.2,2)

Copy B1 down to B125. Then

B126: =ROUND(A126*1.25,2)

Copy B126 down to B300.

Select Column B. Copy it. Select Column A. Choose Edit/Paste Special,
selecting the Values radio button. Click OK. Delete Column B.
 

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