1
我正在嘗試計算有條件着色的單元格(以及其他滿足的條件)。檢查有條件格式化單元格的顏色索引
的代碼來檢查顏色索引如下:
Function CheckColor(rng As Range)
Dim arr()
'ReDim arr(1 To rng.Count, 1 To 1) ' or use this instead of arr = rng.Value2
arr = rng.Value2 ' arr Type in the Locals window shows as Variant(1 To 11, 1 To 1)
For i = 1 To rng.Cells.Count
arr(i, 1) = rng.Cells(i, 1).Interior.ColorIndex = 15
Next i
CheckColor = arr
End Function
不過,我發現的是,條件格式歪斜的顏色索引。任何人都可以幫助我修復上述功能來檢查有條件格式化單元格的顏色代碼嗎?
您好,感謝您的答覆。但是,當我運行它時,我得到一個值錯誤,如下所示:'= DisplayedColor(N25)' –
你在那裏?它不起作用 –
每個單元有多個條件嗎?什麼是格式(字體和背景顏色)? – Taosique