Problem solved. Used the following Macro in the worksheet:
Private Sub ListBox2_Click()
If Sheets("Main Screen (Beta)").Range("B1").Value = 1 Then
Cells.Find(What:="baaa", After:=ActiveCell, LookIn:=xlFormulas, LookAt _
:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:= _
False, SearchFormat:=False).Activate
ActiveCell.Offset(0, 8).Range("A1:A3").Select
Selection.Interior.ColorIndex = 37
End If
If Sheets("Main Screen (Beta)").Range("B1").Value = 2 Then
Cells.Find(What:="baaa", After:=ActiveCell, LookIn:=xlFormulas, LookAt _
:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:= _
False, SearchFormat:=False).Activate
ActiveCell.Offset(0, 8).Range("A1:A3").Select
Selection.Interior.ColorIndex = 34
End If
End Sub
Bookmarks