![]() |
Multiply an entire spreadsheet by 1000 without going into ea cell
I need to multiploy a large spreadsheet with many values by 1000 with out
going into each cell. I would need to turn ea. cell from a value to a formula. |
Answer: Multiply an entire spreadsheet by 1000 without going into ea cell
Here's how to multiply an entire spreadsheet by 1000 without going into each cell:
That's it! Your entire spreadsheet should now be multiplied by 1000 without going into each cell. The values will still be there, but they will be formatted to display nothing. If you need to see the values again, you can simply change the cell format back to a number format. |
Multiply an entire spreadsheet by 1000 without going into ea cell
I am not sure of how to turn all the values into formulas but you can
multiply all the values by doing the following. Write 1000 in any of the blank cells Copy that cell Select the entire range that you want to change. Right click Paste Special Multiply "Jacham" wrote in message ... I need to multiploy a large spreadsheet with many values by 1000 with out going into each cell. I would need to turn ea. cell from a value to a formula. |
Multiply an entire spreadsheet by 1000 without going into ea cell
What do you mean by formula?
I need to multiploy a large spreadsheet with many values by 1000 with out going into each cell. I would need to turn ea. cell from a value to a formula. |
Multiply an entire spreadsheet by 1000 without going into ea c
Here's a macro that will do it for you:
Sub DelZeros() For X = 1 To 1 Dim redRng As Range Set redRng = Range("A1:Z100") For Each Cell In redRng If Cell.Value < "" Then Cell.Value = Cell.Value * 1000 End If Next Cell Next X End Sub Adjust the range to suit... Regards, Ryan -- RyGuy "Alden" wrote: What do you mean by formula? I need to multiploy a large spreadsheet with many values by 1000 with out going into each cell. I would need to turn ea. cell from a value to a formula. |
All times are GMT +1. The time now is 12:47 AM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com