All my users started to get this error last week. They all use a copy of the same spreadsheet and its been in use for a couple years with no issues.
Its a basic production sheet, and I have added simple buttons that will increase (and some to decrease) a number each time its pushed. It finds the correct date, then moves to the correct cell to change the number accordingly.
The error happens at this line:
Application.Goto Range("b6:b150").Cells(Application.Match(PresentDate, Range("b6:b150"), 0))
This is a sample of the full action of the button:
Sub IncrementSoldAd()
'
Dim PresentDate As Long
PresentDate = Int(Now())
Application.Goto Range("b6:b150").Cells(Application.Match(PresentDate, Range("b6:b150"), 0))
ActiveCell.Offset(0, 1).Select
soldad = ActiveCell.Value + 1
ActiveCell.Value = soldad
End Sub
Since it all started happening to everyone at the same time, I assume it has something to do with the date. The dates in column "b" are generated using an increment "+1" to the previous cell, like so:
=B134+1
But like I said. It all has worked fine until last week.
Any assistance in tracking down this problem is appreciated
Its a basic production sheet, and I have added simple buttons that will increase (and some to decrease) a number each time its pushed. It finds the correct date, then moves to the correct cell to change the number accordingly.
The error happens at this line:
Application.Goto Range("b6:b150").Cells(Application.Match(PresentDate, Range("b6:b150"), 0))
This is a sample of the full action of the button:
Sub IncrementSoldAd()
'
Dim PresentDate As Long
PresentDate = Int(Now())
Application.Goto Range("b6:b150").Cells(Application.Match(PresentDate, Range("b6:b150"), 0))
ActiveCell.Offset(0, 1).Select
soldad = ActiveCell.Value + 1
ActiveCell.Value = soldad
End Sub
Since it all started happening to everyone at the same time, I assume it has something to do with the date. The dates in column "b" are generated using an increment "+1" to the previous cell, like so:
=B134+1
But like I said. It all has worked fine until last week.
Any assistance in tracking down this problem is appreciated