2013-04-16 73 views
1

當我在vba中執行以下操作時,兩行合併爲一行。我想有兩個單獨的合併行,任何人都可以幫忙?分別合併兩行

Range("A" & 1 & ":I" & 1).MergeCells = True 
Range("A" & 2 & ":I" & 2).MergeCells = True 
+0

但是,除非從第1行一個單元與第2行合併那些不會合並行1和2一起 –

回答

0

而且我的評論試試這個

Sub Sample() 
    Range("A" & 1 & ":I" & 2).MergeCells = False 

    Range("A" & 1 & ":I" & 1).MergeCells = True 
    Range("A" & 2 & ":I" & 2).MergeCells = True 
End Sub