April 2006
Beginner
1114 pages
98h 16m
English
Application.FindFormat
Returns the CellFormat object used by the Find method. For example, the following code selects the first bold cell on the active worksheet:
Sub TestFindFormat( )
With Application.FindFormat
.Font.Bold = True
End With
Cells.Find("", , , , , , , , True).Select
End SubRead now
Unlock full access