Hello and Thank you in advance for your assistance!
I am somewhat new to VBA and I am running into an error that I have never seen before. I tested on 2 computers (personal and company) and get the error on both.
I am trying to get the position of a picture in powerpoint using an excel vba code using the immediate window and I get the error Run-time error -2147221164 (80040154) Class not registered
References to powerpoint and of course Microsoft excel are set up. (see below, not sure if pic will show). 
Here's the code
sub picsize()
Dim SD As Slide
Dim SH As Shape
Set shp = ActivePresentation.Slides(1).Shapes(1)
Debug.Print shp.Top
Debug.Print shp.Left
Debug.Print shp.Width
Debug.Print shp.Height
End Sub
Any assistance is appreciated!