以文本方式查看主题

-  Foxtable(狐表)  (http://www.foxtable.com/bbs/index.asp)
--  专家坐堂  (http://www.foxtable.com/bbs/list.asp?boardid=2)
----  [求助]VBA中替换空格和换行的代码,错在哪里  (http://www.foxtable.com/bbs/dispbbs.asp?boardid=2&id=60289)

--  作者:hiliuyong
--  发布时间:2014/11/21 18:34:00
--  [求助]VBA中替换空格和换行的代码,错在哪里

    Cells.Replace What:=Chr(10), Replacement:="", LookAt:=xlPart, SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, ReplaceFormat:=False
    Cells.Replace What:=vbCrLf, Replacement:="", LookAt:=xlPart, SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, ReplaceFormat:=False
    Cells.Replace What:=vbCr, Replacement:="", LookAt:=xlPart, SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, ReplaceFormat:=False

 

本意是要在调用的VBA中替换空格和换行符号,但是在红色的地方报错,这个地方应该如何写呢?