arthmalaca
New Member
- Joined
- Sep 18, 2016
- Messages
- 5
Hi,
Please help me. I'm trying to create a checklist.
I need to change the value in cells K25 and K27 to N/A when the value of cell K22 is Correctly
I used the code below before but it does not work
Can somebody help me, please. I'm quite new in VBA codes, so please bear with me.
Please help me. I'm trying to create a checklist.
I need to change the value in cells K25 and K27 to N/A when the value of cell K22 is Correctly
I used the code below before but it does not work
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Range("K22").Value = "Correctly" Then
Range("K25", "K27").Value = "N/A"
End If
End Sub
Can somebody help me, please. I'm quite new in VBA codes, so please bear with me.