答案 0 :(得分:1)
完成查询后,执行get()返回集合对象,或first()返回Sub FOO()
Dim answer As Range
Dim cell As Range
'/ This will show message if at least one cell is found with red color
Set answer = Range("b:b")
For Each cell In answer.Cells
If answer.Interior.Color = vbRed Then
MsgBox ("There is an issue with column B, please review.")
Exit For
End If
Next
End Sub
。你拥有的是builder。这可能是这样的。
model object