Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
using VBA is it possible to select a range of cells (e2:g3 - some may contain
numeric value (no text)), then put a zero into any of the cells that do not contain a numeric value. help appreciated |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
On Error Resume Next
selection.specialcells(xlblanks).value = 0 On Error goto 0 -- Regards, Tom Ogilvy "Paul" wrote: using VBA is it possible to select a range of cells (e2:g3 - some may contain numeric value (no text)), then put a zero into any of the cells that do not contain a numeric value. help appreciated |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
worked treat, many thanks
Paul "Tom Ogilvy" wrote: On Error Resume Next selection.specialcells(xlblanks).value = 0 On Error goto 0 -- Regards, Tom Ogilvy "Paul" wrote: using VBA is it possible to select a range of cells (e2:g3 - some may contain numeric value (no text)), then put a zero into any of the cells that do not contain a numeric value. help appreciated |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
On error resume next
selection.specialcells(xlblanks).value = 0 On error goto 0 -- Regards, Tom Ogilvy "Paul" wrote: using VBA is it possible to select a range of cells (e2:g3 - some may contain numeric value (no text)), then put a zero into any of the cells that do not contain a numeric value. help appreciated |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Index/match - make blank cells return a blank value. | Excel Worksheet Functions | |||
Excel 2002: Return blank when VLOOKUP on blank cells | Excel Discussion (Misc queries) | |||
Nested IF - return a blank when compared cells are blank | New Users to Excel | |||
Maximum Number of Blank Cells between Non Blank Cells in a Range | Excel Worksheet Functions | |||
Imported Data creates blank cells that aren't really blank | Excel Worksheet Functions |