Sub XXX()
a = 2
Do While Cells(a, 1) <> ""
ActiveSheet.Shapes.AddShape(msoShapeUpArrow, 177#, 104, 20, 10). _
Select
Selection.ShapeRange.IncrementRotation Cells(a, 1)
Selection.ShapeRange.ScaleHeight Cells(a, 2), msoFalse, msoScaleFromBottomRight
a = a + 1
Loop
End Sub