在 excel 中使用 vba 获取条件格式颜色
get conditional formatted color with vba in excel
工作:
excel 气泡图,带有不同大小和颜色的圆圈。
不工作:
我通过使用 vba 读取颜色值来获取颜色,但是 Interior.Color
无法识别条件格式设置的颜色。
有问题的代码:
Range("Z" & Application.WorksheetFunction.Match(srs.Name, Sheets("Diagrammdaten").Range("a:a"), 0)).Interior.Color
我在与 Interior.Color
不同的选择器上找不到任何东西,但在 excel?
中肯定必须有类似 Displayed.Color
的东西
感谢您的帮助。
您可以使用:
DisplayFormat.Interior.Color
获取单元格颜色。也可以通过 DisplayFormat
访问其他 CF 属性
工作: excel 气泡图,带有不同大小和颜色的圆圈。
不工作:
我通过使用 vba 读取颜色值来获取颜色,但是 Interior.Color
无法识别条件格式设置的颜色。
有问题的代码:
Range("Z" & Application.WorksheetFunction.Match(srs.Name, Sheets("Diagrammdaten").Range("a:a"), 0)).Interior.Color
我在与 Interior.Color
不同的选择器上找不到任何东西,但在 excel?
Displayed.Color
的东西
感谢您的帮助。
您可以使用:
DisplayFormat.Interior.Color
获取单元格颜色。也可以通过 DisplayFormat