جرب هذا الكود لعله يفيدك ولكن لمدى محدد كما في ملف عملك من العمود a: j يمكنك التعديل على الكود وتغيير المدى
Sub test()
For Each sh In Worksheets
Set Rng = Sheets(sh.Name).Range("A:J")
With Sheets(sh.Name)
Set c = Rng.Find("تم", lookat:=xlWhole)
If Not c Is Nothing Then
FirstAddress = c.Address
Do
Set x1 = .Range("A" & c.Row)
Set x2 = .Range("J" & c.Row)
.Range(x1, x2).Interior.Color = RGB(255, 0, 0)
Set c = Rng.FindNext(c)
Loop While c.Address <> FirstAddress
End If
Set c = Rng.Find("انجز", lookat:=xlWhole)
If Not c Is Nothing Then
FirstAddress = c.Address
Do
Set x1 = .Range("A" & c.Row)
Set x2 = .Range("J" & c.Row)
.Range(x1, x2).Interior.Color = RGB(0, 0, 255)
Set c = Rng.FindNext(c)
Loop While c.Address <> FirstAddress
End If
End With
Next
End Sub