Forum Discussion
GEEK_21
May 27, 2023Brass Contributor
Highlight the column header of the selected cell | Solved
Hello everyone I hope you are well. Just a small request, I have the file shown above and I would like to highlight the column header of the selected cell Private Sub Workbook_Sheet...
- May 27, 2023
I don't really understand your code, but perhaps add the following line above the line that protects the sheet just before the end of the code:
Sh.Cells(2, Target.Column).Interior.Color = RGB(255, 255, 0)
HansVogelaar
May 27, 2023MVP
I don't really understand your code, but perhaps add the following line above the line that protects the sheet just before the end of the code:
Sh.Cells(2, Target.Column).Interior.Color = RGB(255, 255, 0)
GEEK_21
May 27, 2023Brass Contributor
Thank you so much works perfectly