ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Little problem with the REPLACE method. (https://www.excelbanter.com/excel-programming/345824-little-problem-replace-method.html)

jase[_2_]

Little problem with the REPLACE method.
 
I 'm sure someone has had this problem before.
(It's very similar to a problem I had with the Find method that was
solved in an earlier thread)

Column C is a column of dates, and is formatted as "14-Mar-98".
Some of the cells in column C contain, in integer form, 0 (zero): and
are
therefore returning "0-Jan-00" in the above format. Therefore why
does the below code NOT replace the values in these cells! (the below
doesn 't seem to throw an error either which is sort of strange)
I got the below code from the macro recorder and then just changed
xlPart to xlWhole.

Columns("C:C").Select
Selection.Replace What:="0-Jan-00", Replacement:="n/a", _
LookAt:=xlWhole, SearchOrder:=xlByRows, _
MatchCase:=True

any help greatly appreciated
Jason


Jim May

Little problem with the REPLACE method.
 
Try replacing What:="0-Jan-00" with
What:= 0
Since that is the actual content of the cell.
HTH

"jase" wrote in message
oups.com...
I 'm sure someone has had this problem before.
(It's very similar to a problem I had with the Find method that was
solved in an earlier thread)

Column C is a column of dates, and is formatted as "14-Mar-98".
Some of the cells in column C contain, in integer form, 0 (zero): and
are
therefore returning "0-Jan-00" in the above format. Therefore why
does the below code NOT replace the values in these cells! (the below
doesn 't seem to throw an error either which is sort of strange)
I got the below code from the macro recorder and then just changed
xlPart to xlWhole.

Columns("C:C").Select
Selection.Replace What:="0-Jan-00", Replacement:="n/a", _
LookAt:=xlWhole, SearchOrder:=xlByRows, _
MatchCase:=True

any help greatly appreciated
Jason




jase[_2_]

Little problem with the REPLACE method.
 
Thanks
I'll give that a go

J



All times are GMT +1. The time now is 10:38 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com