Combine two Private Sub Worksheet_Change

PANIGGR

New Member
Joined
Sep 4, 2015
Messages
20
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 calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
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,224,822
Messages
6,181,164
Members
453,021
Latest member
Justyna P

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