1
我正在寫一個代碼,檢查行是否爲黃色,如果單元格的值爲true,如果兩者均爲正值,則應返回空行並取消選中複選框名單。否則,它應該返回一個黃色的行。我寫了下面的代碼,但它不起作用。我將不勝感激您的幫助如果有2個條件返回2個不同的可能值
Sub desmarcar_antigos()
Dim i As Integer
For i = 130 To 2 Step -1
If Rows(i).EntireRow.Interior.ColorIndex = 6 Then
If Cells(i, 9).Value = "TRUE" Then
Rows(i).EntireRow.Interior.ColorIndex = 0 And Sheets("Planilha").CheckBox1.Value = False
Else
Rows(i).EntireRow.Interior.ColorIndex = 6
End If
End If
Next i
Application.ScreenUpdating = False
End Sub
psst ...它的行()不是Ows();) – DragonSamu