Sub ExempleII()
Dim Rng As Range
Set Rng = [S1600]
Rng = 15
MsgBox "Valeur dans cellule S1600: " & Rng, vbInformation
MsgBox Cells(Rng.Value, "C").Address(0, 0), vbInformation, "Adresse cellule selon valeur S1600"
Cells(Rng.Value, "C").Interior.Color = vbYellow
MsgBox "Supprimer ligne?"
Cells(Rng.Value, "C").EntireRow.Delete
End Sub