A really lazy (=inefficient) way:
Sub blah()
For Each cll In ActiveSheet.UsedRange
  If cll.Value = "z" Then cll.Resize(, 4).Interior.Color = vbYellow
Next cll
End Sub