Change Cell Value based on Value on other cell

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

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.
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
try

Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Range("K22").Value = "Correctly" Then
Application.EnableEvents = False
    Range("K25,K27").Value = "N/A"
Application.EnableEvents = True
End If
End Sub
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,771
Messages
6,126,799
Members
449,337
Latest member
BBV123

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top