Combine two Private Sub Worksheet_Change

PANIGGR

New Member
Joined
Sep 4, 2015
Messages
15
Hi,

I have below two Private Sub Worksheet_Change, how can i merge for two logic

1st VBA
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, Range("A3:A5000")) Is Nothing Then Exit Sub
Application.EnableEvents = False

With Target
.Offset(, 2).Value = Date
.Offset(, 3).Value = Time
.Offset(, 4).Value = Environ("username")
End With
Application.EnableEvents = True
End Sub

2nd VBA

Private Sub Worksheet_Change(ByVal Target As Range)

If Intersect(Target, Range("B3:B5000")) Is Nothing Then Exit Sub
Application.EnableEvents = False

With Target
.Offset(, 4).Value = Date
.Offset(, 5).Value = Time
.Offset(, 6).Value = Environ("username")
End With
Application.EnableEvents = True
End Sub
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
Have assumed you want to apply if only one cell changed:
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Cells.Count <> 1 Then Exit Sub
Application.EnableEvents = False
If Not Intersect(Target, Range("A3:A5000")) Is Nothing Then
    With Target
        .Offset(, 2).Value = Date
        .Offset(, 3).Value = Time
        .Offset(, 4).Value = Environ("username")
    End With
ElseIf Not Intersect(Target, Range("B3:B5000")) Is Nothing Then
    With Target
        .Offset(, 4).Value = Date
        .Offset(, 5).Value = Time
        .Offset(, 6).Value = Environ("username")
    End With
End If
Application.EnableEvents = True
End Sub
 
Last edited:
Upvote 0
Another way:
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Cells.Count <> 1 Then Exit Sub
Application.EnableEvents = False
If Not Intersect(Target, Range("A3:B5000")) Is Nothing Then
    With Target
        .Offset(, 2 * .Column).Value = Date
        .Offset(, (2 * .Column) + 1).Value = Time
        .Offset(, (2 * .Column) + 2).Value = Environ("username")
    End With
End If
Application.EnableEvents = True
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,399
Messages
6,119,279
Members
448,884
Latest member
chuffman431a

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