我想使用VBA宏將字符串中的1和0例如「1001001001」着色爲兩種不同的顏色。這可能嗎? 這裏是我試圖代碼更改Excel單元格中的特定數值
Sub changeTextColor()
Green = RGB(0, 255, 0)
Red = RGB(255, 0, 0)
Black = RGB(0, 0, 0)
'Select cell
Range("H2").Select
For x = 1 To 10
If ActiveCell.Value = "1" Then
'Change the text color if "1"
ActiveCell.Font.Color = Green
ElseIf ActiveCell.Value = "0" Then
'Change the text color if "0"
ActiveCell.Font.Color = Red
End If
ActiveCell.Offset(1, 0).Select
Next
End Sub
請張貼代碼,您都試過了。堆棧溢出不是代碼寫入服務。 –
(請改爲將其編輯到您的OP中,很難在評論中閱讀) – BruceWayne
已添加,我的道歉 – user6442299