Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Sub InsertBitmap()
Dim Wkb As Workbook
Set Wkb = Workbooks.Open("C:\test.xls")
With Wkb.ActiveSheet
.Cells(3, 8).Select
.Pictures.Insert ("C:\xyz.bmp")
End With
Wkb.Close SaveChanges:=True
End Sub