Dear Members,
I am using the following code to display photo from a folder in my excel sheet.
Sub DisplayMainPicture()
With Sheet1
On Error Resume Next
.Shapes("ReceiptPic").Delete
On Error GoTo 0
If .Range("I12").Value = Empty Then Exit Sub
PicPath = .Range("I12").Value 'Picture Path
If...