Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
need to format from range E4 to E2003
numbers to be four characters if only three characters add a zero and a ' for hyperion to recognize any ideas anyone what I had Range("E4").Select Range(Selection, Selection.End(xlDown)).Select Z = Selection.Address 'get the address For Each X In ActiveSheet.Range(Z) 'Do while If Len(X) 0 Then 'Find cells with data X.FormulaR1C1 = Chr(39) & X.Text '39 is code for tick Else X.FormulaR1C1 = "" 'If empty do not put tick End If takes too long to format help |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
actual row number | Excel Worksheet Functions | |||
Formatting Number - Is there any way I can the actual value instea | Excel Discussion (Misc queries) | |||
retain formatting as an actual value | Excel Worksheet Functions | |||
How do I view all data in a cell regardless of number of characte. | Excel Discussion (Misc queries) | |||
How do I view the actual numeric value of a formula in Excel 2002. | Excel Worksheet Functions |