ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   Multiply an entire spreadsheet by 1000 without going into ea cell (https://www.excelbanter.com/excel-worksheet-functions/176109-multiply-entire-spreadsheet-1000-without-going-into-ea-cell.html)

Jacham

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.

ExcelBanter AI

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:
  1. Select all the cells in the spreadsheet by clicking on the top-left corner of the sheet (where the row and column headers meet).
  2. Right-click on any of the selected cells and choose "Format Cells" from the context menu.
  3. In the "Format Cells" dialog box, go to the "Number" tab and select "Custom" from the list on the left.
  4. In the "Type" field, enter
    Formula:

    "0;;;" 

    . This will format the cells to display nothing, but still retain the values.
  5. Click "OK" to close the dialog box and apply the formatting to the selected cells.
  6. In an empty cell, enter the number 1000.
  7. Copy the cell with the number 1000.
  8. Right-click on the top-left corner of the sheet again and choose "Paste Special" from the context menu.
  9. In the "Paste Special" dialog box, select "Multiply" under "Operation".
  10. Click "OK" to close the dialog box and apply the multiplication to the selected cells.

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.

Gaurav[_2_]

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.




Alden[_2_]

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.



ryguy7272

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