Help with VBA

terrib54

New Member
Joined
Feb 26, 2018
Messages
7
I have the following code that works but it replaces the entire line. I need multiple ranges. I tried but when I posed something in column it overwrote all the other cell dates. I need each to be stamped individually so I missed something.

I apologize ahead of time. I'm new - trying hard but not having any luck. Can anyone tell me how to have each range only post the date/time in the column just to the left of it. IE: J5:36 posts to I5:I36, L5:L36 posts to K5:36.

This is a 12 month spreadsheet and once a month a post if made via formula that needs to post the time data is posted. Since a formula pulls the data from other sheets I need the Worksheet_Calculate function.

Thanks in advance.

Private Sub Worksheet_Calculate()
Dim rng As Range, cl As Range
Static OldData As Variant
Application.EnableEvents = False
Set rng = Me.Range("J5:J36,L5:L36,N5:N36,P5:P36,R5:R36,T5:T36,V5:V36,X5:X36,Z5:Z36,ab5:ab36,AD5:AD36")
If IsEmpty(OldData) Then
OldData = rng.Value
End If
For Each cl In rng.Cells
If Len(cl) = 0 Then
cl.Offset(0, -1).ClearContents
Else
If cl.Value <> OldData(cl.Row - rng.Row + 1, 1) Then
With cl.Offset(0, -1)
.NumberFormat = "m/d/yy h:mm:ss"
.Value = Now
End With
End If
End If
Next
OldData = rng.Value
Application.EnableEvents = True
End Sub
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
Are those cells being changed manually by the user, or do they contain formulas?
 
Upvote 0
Are those cells being changed manually by the user, or do they contain formulas?

The Summary sheet is based on formulas from the department sheets. No manual entries on that worksheet. For instance, cell J5=HR!F4. All data on the summary sheet is based on formulas which is why I need the WS-Calculate I believe.

Summary Sheet (holds all data and dates)
HR
Operations
Supply Chain
Finance
Engineering
Quality
 
Upvote 0
Code:
OldData = rng.Value

... only reads in the first area of a multi-area range.

Maybe like this, but completely untested:

Code:
Private Sub Worksheet_Calculate()
  Static avOld      As Variant
  Static avNew      As Variant
  Dim iRow          As Long
  Dim iCol          As Long

  On Error GoTo Oops
  Application.EnableEvents = False
  
  With Range("J5:AD36")
    If IsEmpty(avOld) Then
      avOld = .Value2

    Else
      avNew = .Value2

      For iCol = 1 To UBound(avOld, 2) Step 2
        For iRow = 1 To UBound(avOld, 1)
          If IsEmpty(avNew(iRow, iCol)) Then
            Cells(iRow + .Row - 1, .iCol + .Column - 2).ClearContents
          ElseIf avNew(iRow, iCol) <> avOld(iRow, iCol) Then
            Cells(iRow + .Row - 1, .iCol + .Column - 2) = Now()
          End If
        Next iRow
      Next iCol
      avOld = avNew
    End If
  End With

Oops:
  Application.EnableEvents = True
End Sub
 
Last edited:
Upvote 0
Code:
OldData = rng.Value

... only reads in the first area of a multi-area range.

Maybe like this, but completely untested:

Code:
Private Sub Worksheet_Calculate()
  Static avOld      As Variant
  Static avNew      As Variant
  Dim iRow          As Long
  Dim iCol          As Long

  On Error GoTo Oops
  Application.EnableEvents = False
  
  With Range("J5:AD36")
    If IsEmpty(avOld) Then
      avOld = .Value2

    Else
      avNew = .Value2

      For iCol = 1 To UBound(avOld, 2) Step 2
        For iRow = 1 To UBound(avOld, 1)
          If IsEmpty(avNew(iRow, iCol)) Then
            Cells(iRow + .Row - 1, .iCol + .Column - 2).ClearContents
          ElseIf avNew(iRow, iCol) <> avOld(iRow, iCol) Then
            Cells(iRow + .Row - 1, .iCol + .Column - 2) = Now()
          End If
        Next iRow
      Next iCol
      avOld = avNew
    End If
  End With

Oops:
  Application.EnableEvents = True
End Sub

I need the code to date the column just to the left of the newly updated field. I don't see that here. Where would I add that back not to throw and error?
 
Upvote 0
Code:
Cells(iRow + .Row [COLOR="#FF0000"]- 1[/COLOR], .iCol + .Column [COLOR="#FF0000"]- 2[/COLOR])...

But again, untested.
 
Upvote 0
WS_Calculate and WS_Change work together great, but I am hoping to not go back each month to change the column letters to the next set. I am looking for a way to include L, N, P, R, T, V, X, Z, AB, AD.


Code:
Private Sub Worksheet_Change(ByVal Target As Excel.Range)
    With Target
        If .Count > 1 Then Exit Sub
        If Not Intersect(Range("[B][COLOR=#0000CD]J8:J36[/COLOR][/B]"), .Cells) Is Nothing Then
            Application.EnableEvents = False
            If IsEmpty(.Value) Then
                .Offset(0, -1).ClearContents
            Else
                With .Offset(0, -1)
                    .NumberFormat = "m/d/yy h:mm"
                    .Value = Now
                End With
            End If
            Application.EnableEvents = True
        End If
    End With
End Sub

Code:
Private Sub Worksheet_Calculate()
    Dim rng As Range, cl As Range
    Static OldData As Variant
    Application.EnableEvents = False
    Set rng = Me.Range("[B][COLOR=#0000CD]J8:J36[/COLOR][/B]")
    If IsEmpty(OldData) Then
        OldData = rng.Value
    End If
    For Each cl In rng.Cells
        If Len(cl) = 0 Then
            cl.Offset(0, -1).ClearContents
        Else
            If cl.Value <> OldData(cl.Row - rng.Row + 1, 1) Then
                With cl.Offset(0, -1)
                    .NumberFormat = "m/d/yy h:mm:ss"
                    .Value = Now
                End With
            End If
        End If
    Next
    OldData = rng.Value
    Application.EnableEvents = True
End Sub
 
Upvote 0
Have we changed topic? My code tests all of those columns.
 
Upvote 0
No I missed the last post. Sorry.

So I need to insert
Code:
Cells(iRow + .Row [COLOR=#ff0000]- 1[/COLOR], .iCol + .Column [COLOR=#ff0000]- 2[/COLOR])...

right after

Code:
If Not Intersect(Range("[B][COLOR=#0000cd]J8:J36[/COLOR][/B]"), .Cells) Is Nothing Then
 
Upvote 0
Why not try the code I posted, as is?
 
Upvote 0

Forum statistics

Threads
1,214,985
Messages
6,122,605
Members
449,089
Latest member
Motoracer88

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