Hi LKnomad,
You haven't told your macro what objshape is. Try:
Code:
Sub ChangePieChart()
Dim objShape As Shape
Set objShape = Selection.ShapeRange(1)
objShape.Height = 250
End Sub
This could be reduced to:
Code:
Sub ChangePieChart()
Selection.ShapeRange(1).Height = 250
End Sub