why does cell.replace work with byrows and not with bycolumns

  • Thread starter Thread starter chris12345
  • Start date Start date
C

chris12345

Hi,

I have a macro where I want to replace a certain string with another
string. However, when I put in the macro
Cells.Replace What:="(1 markets)", Replacement:="(1 market)", LookAt:=
_
xlPart, SearchOrder:=xlByColumns, MatchCase:=False,
SearchFormat:=False, _
ReplaceFormat:=False
it does nothing, but if I change SearchOrder:=xlByColumns to
SearchOrder:=xlByRows, then it works fine.

Can anyone explain why? If it helps, the cells in which the strings to
be replaced can be found are all in 3 cells merged together, with the
string in the left most of the 3 cells (all 3 cells are on the same
row).

Thanks!
 
Merged cells are a pain.

There are somethings that work with merged cells and some (lots???) of things
that don't.

You may want to consider yourself lucky since you do have an alternative.

ps. I tested in xl2003. But each version of excel seems to treat merged cells
a little better. Maybe it works in xl2007 or will work in xl2010????
 
Back
Top