Home |
Search |
Today's Posts |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Another option.
Select an empty cell copy it select your range to fix edit|paste special|Check Add If you need a macro, record it when you do it once. It might be faster than looping. Kind of like this: Option Explicit Sub testme01() Dim myHelperCell As Range Dim myRng As Range Set myRng = Selection 'or whatever range you want With ActiveSheet Set myHelperCell = .Cells.SpecialCells(xlCellTypeLastCell).Offset(1, 1) End With With myRng .NumberFormat = "General" myHelperCell.Copy .PasteSpecial Operation:=xlAdd End With End Sub bobm wrote: hello, i have a question regarding excel giving the error that the number is stored as text. can i convert these cells using a for loop until the last row? i tried multiplying the cell value by 1 in a for loop but this this did not seem to work. i still get the green triangle next the cell indicating number stored as text. any help is appreciated. bobm -- Dave Peterson |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Convert dates stored as text | Excel Discussion (Misc queries) | |||
Number stored as text | Excel Worksheet Functions | |||
Number stored as text | Excel Discussion (Misc queries) | |||
Number stored as text | Excel Discussion (Misc queries) | |||
convert value stored as text to logical refrence value! | Excel Worksheet Functions |