Private Sub Workbook_SheetDeactivate(ByVal Sh As Object)
Dim ws As Worksheet
On Error Resume Next
Application.EnableEvents = False
With Range("A10:A150")
.NumberFormat = "General"
.Value = .Value
End With
For Each ws In ActiveWorkbook.Worksheets
ws.Columns(6).SpecialCells(xlCellTypeFormulas, 16).EntireRow.Hidden = True
Next
Application.EnableEvents = True
End Sub