I have a picture on sheet 'Picture' A1 that i want to save as a PNG file, and the name is located in Q2.
Once saved i want to delete the picture also.
This is as far as i can get, but in my macro it never captures the saving process. Any suggestions
Sub save()
'
' save Macro
'
'
    range("Q2").Select
    Selection.Copy
    ActiveSheet.Shapes.range(Array("Picture 57")).Select
    Selection.Delete
End Sub

 
    