yesDo you mean inserting a picture from a folder and pasting it in a cell with the picture dimensions being the cell dimension?
Let me try. ThanksOn the Insert tab..., try:
View attachment 111488
Sub Insert_Pic()
ActiveSheet.Shapes.AddPicture "C:\Folder Name Here\Picture Name Here.jpg", False, True, Cells(12, 7).Left, Cells(12, 7).Top, Cells(12, 7).Width, Cells(12, 7).Height
End Sub