我正在尝试编写一个可以从单元格调用的简单函数,如果给定单元格的背景具有特定的背景颜色,则该函数将返回。
当从子例程调用时,此函数按预期工作,但从工作表调用时失败。在行
IntColor = Cell.DisplayFormat.Interior.Color
Run Code Online (Sandbox Code Playgroud)
这是全部代码
Option Explicit
Public Function GetCellRGB(Rng As Range) As Integer()
Dim Result(1 To 3) As Integer
Dim Cell As Range
Set Cell = Rng.Cells(1, 1)
Dim IntColor As Integer
' when called from worksheet, function exits here with a #VALUE error
IntColor = Cell.DisplayFormat.Interior.Color
Result(1) = IntColor Mod 256 ' red
Result(2) = IntColor \ 256 Mod 256 ' green
Result(3) = IntColor \ 65536 Mod 256 ' blue
GetCellRGB = Result
End Function
Public Function IsColor(Rng As Range, R As Integer, G As Integer, B As Integer) As Boolean
Dim Vals() As Integer
Vals = GetCellRGB(Rng)
If R = Vals(1) And G = Vals(2) And B = Vals(3) Then
IsColor = True
Else
IsColor = False
End If
End Function
' This works as expected
Sub ColorTest()
Dim Rng As Range
Set Rng = ThisWorkbook.ActiveSheet.Range("A1")
Debug.Print IsColor(Rng, 255, 0, 0)
End Sub
Run Code Online (Sandbox Code Playgroud)
以下是“DisplayFormat 在 UDF 中不可用”问题的解决方法。
它用于Evaluate回避 UDF 上下文
Public Function DFColor(addr)
DFColor = Range(addr).DisplayFormat.Interior.Color
End Function
Function CFColorMatches(rng As Range, R As Long, G As Long, B As Long)
CFColorMatches = (rng.Parent.Evaluate("DFColor(""" & rng.Address & """)") = RGB(R, G, B))
End Function
Run Code Online (Sandbox Code Playgroud)
另请注意,您确实不需要所有与 RGB 相关的代码
| 归档时间: |
|
| 查看次数: |
1635 次 |
| 最近记录: |