muhammad susanto
Well-known Member
- Joined
- Jan 8, 2013
- Messages
- 2,089
- Office Version
- 365
- 2021
- Platform
- Windows
hi all..
i have code to filling mark "V" if cell contains background green color..
i want only the green color background is gone after i run macro in second...
how to make it in macro :
any helps much appreciated...
i have code to filling mark "V" if cell contains background green color..
i want only the green color background is gone after i run macro in second...
how to make it in macro :
Code:
Sub Checklist_V()Dim cell As Range
Application.ScreenUpdating = False
With ActiveSheet
For Each cell In .UsedRange
If cell.Interior.ColorIndex = "14" Then cell.Value = "V"
Next cell
End With
Application.ScreenUpdating = True
End Sub
any helps much appreciated...