1
這裏是我的Excel宏編碼,我需要檢查前兩行任何值都小於15它說第三行「通過」。現在我已經做到了,但它只能工作一行。但我必須檢查明智的整個行和列,我怎麼能實現這一點。你們幫我Excel宏檢查前兩行值小於15
Dim result As String
Dim score As Integer
Dim score1 As Integer
Sub wewew()
score = Range("A1").Value
score1 = Range("B1").Value
If score < 15 Or score1 < 15 Then result = "pass"
Range("C1").Value = result
Range("C1").Interior.Color = RGB(255, 0, 0)
End Sub
亞洲時報Siddharth潰敗非常感謝傢伙:)它的工作:)你救了我很多:)謝謝:) –
@pnuts:去過忙着項目...可能要儘快回去:D –
ohh好兄弟:)無論如何,你救了我很多。我掙扎超過5小時以上,現在我不得不放鬆我的椅子:) –