Jemini Jimi
New Member
- Joined
- Jan 11, 2025
- Messages
- 26
- Office Version
- 365
- Platform
- Windows
I have merged two Private Sub Worksheet_Change(ByVal Target As Range) functions. It works but has one big flaw: It runs every time I change any cell.
I want it to trigger only when cell "I4" or "J8" changes. Another weird thing is that if the delete key is hit in cell J8, an error happens.
I want it to trigger only when cell "I4" or "J8" changes. Another weird thing is that if the delete key is hit in cell J8, an error happens.
VBA Code:
Private Sub Worksheet_Change(ByVal Target As Range)
'this part works fine
If Not Intersect(Target, Me.Range("I4")) Is Nothing Then SaveAsFilenameInCell
Application.ScreenUpdating = False
ActiveSheet.Activate
ActiveSheet.Unprotect
Range("72:86").EntireRow.Hidden = False
Rows("73:73").EntireRow.Hidden = True
Rows("86:86").EntireRow.Hidden = True
'THIS PART DOES NOT
If Not Application.Intersect(Range("J8"), Range(Target.Address)) Is Nothing Then
Select Case Target.Value
'this part needs to be if anything other than the other cases below then do nothing
'if I hit the Delete key in cell J8 an error happens
Case Is = "":
Case Is = "Surface Preparation Technologies, LLC":
Rows("72:72").EntireRow.Hidden = True
Rows("73:73").EntireRow.Hidden = False
'peek
Rows("86:86").EntireRow.Hidden = True
Case Is = "Peek Pavement Markings, LLC":
Rows("85:85").EntireRow.Hidden = True
Rows("86:86").EntireRow.Hidden = False
'surface
Rows("73:73").EntireRow.Hidden = True
End Select
End If
ActiveSheet.Protect
Application.ScreenUpdating = True
End Sub