Sub spacely()
Dim Ws As Worksheet
Dim Cl As Range, Rng As Range
Dim Msg As String
For Each Ws In Worksheets
On Error Resume Next
Set Rng = Ws.UsedRange.SpecialCells(xlConstants, xlNumbers)
On Error GoTo 0
If Not Rng Is Nothing Then
For Each Cl In Rng
If Cl.Value = 0.09 And Cl.DisplayFormat.Font.Bold Then
Msg = Msg & vbLf & Ws.Name & "!" & Cl.Address(0, 0)
End If
Next Cl
End If
Next Ws
MsgBox Msg
End Sub
Sub spacely()
Dim Ws As Worksheet
Dim Cl As Range, Rng As Range
For Each Ws In Worksheets
On Error Resume Next
Set Rng = Ws.UsedRange.SpecialCells(xlConstants, xlNumbers)
On Error GoTo 0
If Not Rng Is Nothing Then
For Each Cl In Rng
If Cl.Value = 0.09 And Cl.DisplayFormat.Font.Bold Then
Ws.Select
Cl.Select
Exit Sub
End If
Next Cl
End If
Next Ws
End Sub
Sub spacely()
Dim Ws As Worksheet
Dim Cl As Range, Rng As Range
For Each Ws In Worksheets
On Error Resume Next
Set Rng = Ws.UsedRange.SpecialCells(xlConstants, xlNumbers)
On Error GoTo 0
If Not Rng Is Nothing Then
For Each Cl In Rng
If Cl.Value = 0.09 And Cl.DisplayFormat.Font.Bold Then
With Sheets("List").Range("A" & Rows.Count).End(xlUp)
.Offset(1).Value = Ws.Name
.Offset(1, 1).Value = Cl.Address(0, 0)
End With
End If
Next Cl
End If
Set Rng = Nothing
Next Ws
End Sub