下面是我在excel写的代码,有些问题没弄懂。
ps:ColorIndex = 0 代表颜色是黑色
ColorIndex不是0代表其他颜色
For j = 2 To 7
Cells(j, 12) = 0
For i = 2 To 11
If Cells(j, i).Font.ColorIndex = 0 Then这句和下面哪句有什么不一样吗?为什么下面那句可以运行,这句却跑不了
'If Cells(j, i).Font.ColorIndex <> 3 And Cells(j, i).Font.ColorIndex <> 4 Then
Cells(j, 12) = Cells(j, i) + Cells(j, 12)
End If
Next
Next
我是菜鸟,麻烦您将详细点谢谢!
ps:ColorIndex = 0 代表颜色是黑色
ColorIndex不是0代表其他颜色
For j = 2 To 7
Cells(j, 12) = 0
For i = 2 To 11
If Cells(j, i).Font.ColorIndex = 0 Then这句和下面哪句有什么不一样吗?为什么下面那句可以运行,这句却跑不了
'If Cells(j, i).Font.ColorIndex <> 3 And Cells(j, i).Font.ColorIndex <> 4 Then
Cells(j, 12) = Cells(j, i) + Cells(j, 12)
End If
Next
Next
我是菜鸟,麻烦您将详细点谢谢!