Hi,
I’m trying to copy a column containing a merged row and my destination column is included in that merged row. I noticed that upon using CopyColumn, it appears to still put the value on that merged cell on the destination column.
Example:
Cell A1 is merged with cells B1 and C1. Value is “Merged Source”.
Checking the values before copying the column:
A1 = “Merged Source”
B1 = “”
C1 = “”
If I call CopyColumn to copy Column A to Column B and then check the values again. The value now appears for both A1 and B1 but not C1:
A1 = “Merged Source”
B1 = “Merged Source”
C1 = “”
Furthermore, if I open up the spreadsheet, selecting the merged range after the copy operation shows that I have 2 cells selected (“Count: 2” is displayed at the bottom). eventhough only the merged range is selected.
Is this expected? If yes, is there a way to tell CopyColumn whether to overwrite or not overwrite values for merged ranges on the destination column?
Thanks.