Hi all,
So i have data from a data sheet range: A2:H22
I want to write a script that will find any cells that contain the negative symbol in their cell '-' and highlight that cell in yellow. (mulitple cells will have negative symbol)
Names will exist in row that will include that symbol, so I havent included that in the range.
Can someone point me in the right direction to find a simillar code
Sub Highlight()
ThisWorkbook.Sheets("Data").Activate
Dim LookupRange AS Range
Dim Check As String
Set LookupRange = Range("A2:H22")
Set Check = "-"
'Maybe a For Each Loop
'Where check is in lookuprange
'hightlight cell yellow until done.
Thanks guys..
Bookmarks