0
我得到的錯誤runtime error 94 invalid use of null
用下面的代碼:運行時錯誤94無效使用空的ColorIndex
Sub test()
With Selection.Interior
MsgBox (.ColorIndex)
End With
End Sub
我選擇由兩個合併單元格(水平的,並與ColorIndex
15顏色的電池(這是紫)。
我嘗試了其他細胞運行的代碼,它的運行良好,又有什麼會在這裏造成這個問題?
我不能複製。我剛剛創建了場景並在即時窗口中運行'?Selection.Interior.ColorIndex',並返回了一個數字。但是,我的系統中15的ColorIndex是灰色的。也許有一個奇怪的格式方案導致問題?如果你只是嘗試'(.Color)',會發生什麼? –
FWIW'.ColorIndex'附近的元素是多餘的。 [查看原因](https://stackoverflow.com/documentation/vba/1179/procedure-calls/3818/this-is-confusing-why-not-just-always-use-parentheses#t=201705251504152022667)。 –
如果選擇的範圍有超過1種顏色,那麼它不會工作 – Unknown