Forum Discussion
karlito2605
Oct 28, 2021Copper Contributor
excel
Hello all, hope any of you can help me with a small issue that i have. I have cell A1 and A2 cell A1 has to add up numbers from cell A2 but cell A2 changes everyday and i want cell A1 to keep adding...
- Oct 28, 2021
You mentioned "it has to happen on the current date" so the code uses the current date. If you want to use the date in B1 instead, change the code to
Private Sub Worksheet_Change(ByVal Target As Range) Dim rng As Range If Target.CountLarge > 1 Then Exit Sub If Not Intersect(Range("B3,B20,B37,B54,B71"), Target) Is Nothing Then If IsNumeric(Target.Value) Then Application.EnableEvents = False Set rng = Target.Offset(0, 2).Resize(12, 1).Find(What:=Format(Range("B1").Value, "mmmm"), LookAt:=xlWhole) rng.Offset(0, 1).Value = Target.Value + rng.Offset(0, 1).Value Application.EnableEvents = True End If End If End Sub
karlito2605
Oct 28, 2021Copper Contributor
Yea sir I see what you mean, but what if my date in B1 changes? And i have to be in November. And then December?
HansVogelaar
Oct 28, 2021MVP
You mentioned "it has to happen on the current date" so the code uses the current date. If you want to use the date in B1 instead, change the code to
Private Sub Worksheet_Change(ByVal Target As Range)
Dim rng As Range
If Target.CountLarge > 1 Then Exit Sub
If Not Intersect(Range("B3,B20,B37,B54,B71"), Target) Is Nothing Then
If IsNumeric(Target.Value) Then
Application.EnableEvents = False
Set rng = Target.Offset(0, 2).Resize(12, 1).Find(What:=Format(Range("B1").Value, "mmmm"), LookAt:=xlWhole)
rng.Offset(0, 1).Value = Target.Value + rng.Offset(0, 1).Value
Application.EnableEvents = True
End If
End If
End Sub- HansVogelaarDec 15, 2021MVP
That is completely unrelated to the subject of this discussion. Please start a new discussion and ask your question there.
- Jayz0507Dec 14, 2021Copper ContributorCan you help me in my issue too sir? My issue is "Excel cannot open the file (file.xlsx) because the file format or file extension is not valid. Verify that the file has been not corrupted and that the file extension matches the format of the file"
- karlito2605Oct 28, 2021Copper Contributor
Thank thank you very much, I really appreciate that you have help me with this issue.