Hi Tim,
You can apply conditional formatting to the entire sheet so that the selected cell is formatted to your choice.
- Select Home ribbon
- Select entire worksheet (click the little square top left of sheet where the column Id's and row numbers meet.)
- Select Conditional formatting
- Select New rule
- Select "Use a formula to determine which cells to format"
- Copy the following formula and paste in the field under "Enter values where this formula is true"
=AND(CELL("row")=ROW(),CELL("col")=COLUMN())
Click the Format button and select the type of formatting required. Note that there are tabs at the top where you can select Font, Border or Fill (You can ignore Number format tab because I don't think that will do anything for you.)
Now every time you select a cell or range, the formatting will be applied to the ActiveCell. (Note that I have said the
ActiveCell. The ActiveCell is the first cell of a selection (the one that remains the light color with the remainder of the selection shadowed.)
Note that it will always apply to the ActiveCell and not just with Find.
Hope this helps.