A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
As long as you do not have colored cells on the worksheet, maybe you can use this simple event code to do what you want...
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Cells.Interior.ColorIndex = 0
Union(Target.EntireColumn, Target.EntireRow).Interior.ColorIndex = 36
End Sub
To install this code, go to the worksheet you want to have this functionality, right click its name tab and select View Code from the popup menu that appears, then copy paste the above code into the code window that opened up. That's it, go back to the worksheet and click around.
NOTE: Please mark the message or messages (yes, you can mark more than one) that answer your question as the "Answer" so that others will know your question has been resolved.