Sub MM1()
Dim fNameAndPath As Variant
Dim img As Picture, shp As Shape
Set shp = ThisWorkbook.Worksheets("quote_sheet").Shapes("textbox4")
fNameAndPath = Application.GetOpenFilename(Title:="Select Picture To Be Imported")
If fNameAndPath = False Then Exit Sub
Set img = Worksheets("quote_sheet").Pictures.Insert(fNameAndPath)
If Cells(Rows.Count, "H").End(xlUp).Row > 1 Then
Rows(Cells(Rows.Count, "H").End(xlUp).Row + 2).PageBreak = xlPageBreakManual
End If
End Sub