Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I am working on huge spreadsheets in excel. Many cells have error
values. Can anyone suggest a macro that will find all these error values and replace them with a "." (period)? Thanks |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Sub ReplacewithPeriod()
On Error Resume Next Cells.specialcells(xlFormulas,xlErrors).Value = "." On Error goto 0 End sub -- Regards, Tom Ogilvy "Shamik" wrote: I am working on huge spreadsheets in excel. Many cells have error values. Can anyone suggest a macro that will find all these error values and replace them with a "." (period)? Thanks |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Tom,
Thanks a lot!! This was the very thing I needed. Shamik Shah Tom Ogilvy wrote: Sub ReplacewithPeriod() On Error Resume Next Cells.specialcells(xlFormulas,xlErrors).Value = "." On Error goto 0 End sub -- Regards, Tom Ogilvy |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
replace error with blank | Excel Worksheet Functions | |||
Replace Chart Values with Second Set of Values | Charts and Charting in Excel | |||
Using Find and Replace to replace " in a macro | Excel Programming | |||
Given a range of cells, some of which contain errors (e.g. #DIV/0), replace each cell having an error with the value of a non-error precedent cell | Excel Programming | |||
replace error by value | Excel Discussion (Misc queries) |