Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Option Explicit
Private Const MYSHEETS As String = "Sheet1,Sheet2,Sheet3" 'enter all sheets to check here
Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
Dim arrWs() As String, i As Long, n As Long
If Target.Cells.Count > 1 Then Exit Sub
If Len(Target.Value) = 0 Then Exit Sub
arrWs = Split(MYSHEETS, ",")
For i = LBound(arrWs) To UBound(arrWs)
If Target.Parent.Name <> arrWs(i) Then
If WorksheetFunction.CountIf(Me.Sheets(arrWs(i)).Cells, Target) > 0 Then
Target.EntireRow.Interior.ColorIndex = 6
Exit For
End If
End If
Next i
End Sub
Option Explicit
Const MYSHEETS As String = "Sheet4,Sheet2,Sheet3" 'enter all sheets to check here
Sub CheckThreeSheets()
Dim ws As Worksheet, c As Range
Dim arrWs() As String, i As Long, n As Long
arrWs = Split(MYSHEETS, ",")
Application.ScreenUpdating = False
For i = LBound(arrWs) To UBound(arrWs)
For Each c In Sheets(arrWs(i)).UsedRange
For n = LBound(arrWs) To UBound(arrWs)
If c.Parent.Name <> arrWs(n) Then
If WorksheetFunction.CountIf(Sheets(arrWs(n)).Cells, c) > 0 Then
c.EntireRow.Interior.ColorIndex = 6
Exit For
End If
End If
Next n
Next c
Next i
Application.ScreenUpdating = True
End Sub
Option Explicit
Const MYSHEETS As String = "Sheet4,Sheet2,Sheet3" 'enter all sheets to check here
Sub CheckThreeSheets()
Dim ws As Worksheet, c As Range
Dim arrWs() As String, i As Long, n As Long, LastRow As Long, LastCol As Long
arrWs = Split(MYSHEETS, ",")
Application.ScreenUpdating = False
Application.DisplayAlerts = False
Application.EnableEvents = False
For i = LBound(arrWs) To UBound(arrWs)
LastRow = Sheets(arrWs(i)).Cells.Find("*", searchorder:=xlByRows).Row
LastCol = Sheets(arrWs(i)).Cells.Find("*", searchorder:=xlByColumns).Column
For Each c In Sheets(arrWs(i)).Range("A1", Sheets(arrWs(i)).Cells(LastRow, LastCol))
For n = LBound(arrWs) To UBound(arrWs)
If c.Parent.Name <> arrWs(n) Then
If WorksheetFunction.CountIf(Sheets(arrWs(n)).Cells, c) > 0 Then
c.EntireRow.Interior.ColorIndex = 6
Exit For
End If
End If
Next n
Next c
Next i
Application.DisplayAlerts = True
Application.EnableEvents = True
Application.ScreenUpdating = True
End Sub