Home |
Search |
Today's Posts |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I use this often
Sub fixmynums() Application.ScreenUpdating = False 'lr = Cells.SpecialCells(xlCellTypeLastCell).Row On Error Resume Next For Each c In Selection 'Range("a1:q" & lr) If Trim(Len(c)) 0 And c.HasFormula = False Then c.NumberFormat = "General" c.Value = CDbl(c) End If Next Application.ScreenUpdating = True End Sub -- Don Guillett Microsoft MVP Excel SalesAid Software "Jan S" wrote in message ... I am just learning how to use Macros and I have a process I do quite a bit that I would like to have a macro created for. I use copy - paste special/multiply often when needing to change number formats. What I would like to do is to create a macro that will multiply a cell or reange of cells by 1 (formateed as a number with no decimals or even just as general, how can I accomplish this? |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Macro to copy and paste values (columns)I have a macro file built | Excel Programming | |||
copy multiple worksheets of a workbook, and paste onto a Word document ( either create new doc file or paste onto an existing file.) I need this done by VBA, Excel Macro | Excel Programming | |||
Copy and Paste macro needs to paste to a changing cell reference | Excel Programming | |||
how to count/sum by function/macro to get the number of record to do copy/paste in macro | Excel Programming | |||
Macro to Copy/Paste then Paste to Next Line | Excel Programming |