我在 excel 2013 英语上编写了以下代码,它工作正常。但是当我在 excel 2007 German 上运行它时,它卡在这一行(如果 rngFrom.... 代码的第 3 行)我该如何解决这个问题?
For j = 1 To rngFrom.Cells.Count
rngTo.Cells(j).Value = rngFrom.Cells(j)
If rngFrom.Cells(j).DisplayFormat.Interior.Color <> rngFrom.Cells(j).Interior.Color Then
rngTo.Cells(j).Interior.Color = rngFrom.Cells(j).DisplayFormat.Interior.Color
End If
Next j