Here's my second post, after amazing replies from some great folks! Thank you all for that.

So, when I insert an image - my img variable preset with the path and filename:

    With ActiveSheet.Pictures.Insert(img)
        .Top = ActiveSheet.Cells(FY, FX).Top
        .Left = ActiveSheet.Cells(FY, FX).Left
    End With
I am able to adjust the position of it with no problem (.Top and .Left).

.Rotation and IncrementRotation do not work within the With/End With statements.

Without having to use .Select, is there a way to rotate it?

Thank you in advance to all the great gurus out there!

Mike