Hi,
One way would be a Sheet Change macro that updated a cell - say A1.
The cell could be conditionally formatted with the font colour the same as the background unless the cell says "Manual"
Private Sub Worksheet_Change(ByVal Target As Range)
If Application.Calculation = xlCalculationManual Then
Application.EnableEvents = False
Range("G1") = "MANUAL"
Else
Application.EnableEvents = False
Range("G1") = ""
End If
Application.EnableEvents = True
End Sub
However rather than trying to work around a slow worksheet are you sure you know why it's calculating slowly and have you taken other steps to avoid this? What sort of stuff is in your sheet? i.e. how many formulae or cond. formats and how complex are any formula. Is filtering involved anywhere?
Bookmarks