Put this code into ThisWorkbook module and tryI am preparing table for other users, generally they will be only looking at filtered data.
But sometimes after filtering it they are able to change some values. Then auto calculating should be turned on (instead of turned on immediately after filterring)
Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
If Application.Calculation <> xlCalculationAutomatic Then
Application.Calculation = xlCalculationAutomatic
End If
End Sub
Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
If Application.Calculation <> xlCalculationAutomatic Then
Application.Calculate
End If
End Sub