Sub Test()
Dim Cellule As Range, Plage As Range
Dim HauteurDébut As Double, HauteurFin As Double
HauteurDébut = Application.InputBox("Hauteur à modifier ?", "Hauteur précedente", , , , , , 1)
HauteurFin = Application.InputBox("Hauteur à appliquer ?", "Hauteur désirée", , , , , , 1)
For Each Cellule In Selection.Resize(, 1)
If Cellule.RowHeight = HauteurDébut Then
If Not Plage Is Nothing Then
Set Plage = Union(Plage, Cellule)
Else
Set Plage = Cellule
End If
End If
Next Cellule
If Not Plage Is Nothing Then Plage.RowHeight = HauteurFin
End Sub