Clear Cell Based on Another Cell Value

hajiali

Well-known Member
Joined
Sep 8, 2018
Messages
624
Office Version
  1. 2016
Platform
  1. Windows
Im trying to Clear a value in "A3:A120" in sheet named (CSA1) if the value of Cell L2 in Sheet named (RESULTS) = "YES". I found the following Solution that Will only clear the cells if the YES is in cell L2 in CSA1 Sheet and tired to use to to pull the YES from the RESULTS SHEET: The Below is what I have tired.

'Private Sub Worksheet_Change(ByVal Target As Range) If Not Intersect(Target, Range("RESULTS!L2")) Is Nothing Then
If UCase(Range("RESULTS!L2")) = "YES" Then
Application.EnableEvents = False
Range("A3:A120").ClearContents
Application.EnableEvents = True
End If
End If
End Sub

Im tring to Avoid using a Macro bc it will be over 100+ macros. I just want a VBA code if any possible
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
Try this. Put it in the RESULTS sheet module :
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, [L2]) Is Nothing And UCase([L2]) = "YES" Then _
    Sheets("CSA1").Range("A3:A120").ClearContents
End Sub

Don't understand the relevance of this comment :
Im tring to Avoid using a Macro bc it will be over 100+ macros.
 
Upvote 0
Try this:

This is an auto sheet event script
Your Workbook must be Macro enabled
To install this code:
Right-click on the sheet tab Named RESULTS
Select View Code from the pop-up context menu
Paste the code in the VBA edit window

Code:
Private Sub Worksheet_Change(ByVal Target As Range)
'Modified  1/23/2019  8:48:00 PM  EST
If Target.Address = "$L$2" Then
If Target.Value = UCase("Yes") Then Sheets("CSA1").Range("A3:A120").ClearContents
End If
End Sub
 
Upvote 0
Thank you so much Footoo. I have been searching for this solution was not able but this work out great.

How do I add "L3" = "YES" in RESULTS sheets to clear whats in CSA 2 tab so to Sheets("CSA2").Range("A3:A120").ClearContents?
 
Upvote 0

Forum statistics

Threads
1,215,566
Messages
6,125,589
Members
449,237
Latest member
Chase S

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