VBA跳过空白不起作用

时间:2017-03-08 10:17:10

标签: excel vba excel-vba

我在excel中有这个代码,它复制一个范围并粘贴它。然而,它不会跳过空白,它应该怎么做。

With Worksheets("Calculator")
    .Range("H10:H61").Copy
    Worksheets("Graphs").Range("D2").PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, _
    SkipBlanks:=True, Transpose:=False
End With

范围H10:H61仅包含值,不包含任何内容。

1 个答案:

答案 0 :(得分:3)

可悲的是,跳过空白没有按照你的想法做,你可以在这里阅读它的作用Chandoo

请尝试以下代码:

UISegmentedControl.appearance().setTitleTextAttributes([NSForegroundColorAttributeName:UIColor.redColor()], forState: .Selected)