> Hi all,
> I need to know how to update a column of numbers (dollars & cents values) in
[quoted text clipped - 6 lines]
> 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.