A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Hi Meredith,
Do you mean something like this:
Alt+ F11>click the sheet, then copy in :
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
With Target
.Parent.Cells.Interior.ColorIndex = xlNone
.EntireRow.Interior.ColorIndex = 6
.EntireColumn.Interior.ColorIndex = 6
End With
End Sub
Actually Excel has't this feature temporary. You Should find some third-part add-in to achieve this.
Thanks,
Jerry