Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how to multiply entire colume? | New Users to Excel | |||
Multiply/ Round by 1000 | Excel Discussion (Misc queries) | |||
multiply A by 1000 record results in B | Excel Worksheet Functions | |||
How do I get all numbers or cells on entire sheet (/1000)? | Excel Worksheet Functions | |||
how do I divide or multiply an entire column? | Excel Worksheet Functions |