Strange Excel Query?

stewyb

New Member
Joined
Jul 15, 2011
Messages
16
Hi Guys,

First time poster, long time user :-)

Ok so the question is: Is there a simple way to just simply double every number on a spreadsheet? litterally A1x2, B1x2, C1x2, D1x2

There has to be an easy way.

Any help would be greatly appreciated

Cheers

Stew
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
put a 2 in a cell on another sheet, copy it (Ctrl+c)
Select all the cells on the sheet you want to double, then
Edit|Paste Special|Multiply
OK
 
Upvote 0
Create a range of the same size as the one you want multiplied by 2.
Fill that range with the value 2 (select the range, type 2, then ctrl+enter)
Then select the original range, press ctrl+C
Then click the first cell in the range with 2-values, rightclick, choose Paste Special, and in the Paste Special dialog choose Multiply...

Then copy/paste that new range back to the old to overwrite it...

EDIT: p45cal's way is much more elegant and easier... forget mine :)
 
Upvote 0
in case all the cells were used on the sheet that needed doubling (I know, unlikely)
 
Upvote 0
Hi Guys,

First time poster, long time user :-)

Ok so the question is: Is there a simple way to just simply double every number on a spreadsheet? litterally A1x2, B1x2, C1x2, D1x2

There has to be an easy way.

Any help would be greatly appreciated

Cheers

Stew
If you don't want to use another sheet, and not bother with selecting ranges etc., you could just run a simple VBA macro
Code:
Sub dubblit()
With ActiveSheet.UsedRange
    .Cells = Evaluate(.Address & "*2")
End With
End Sub
 
Upvote 0

Forum statistics

Threads
1,224,597
Messages
6,179,808
Members
452,944
Latest member
2558216095

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top