VBA learner ITG
Active Member
- Joined
- Apr 18, 2017
- Messages
- 272
- Office Version
- 365
- Platform
- Windows
- MacOS
Hi Peers,
I need your advice.
I have the following code which works by adding the a copy of the image to a cell in a column which the JPG is visible in the workbook.
However, when I send the workbook to another person the images don't appear to them unless I send them the JPG files as well.
I have tried googling what I can do to store the JPG in the excel file so I don't have to send the JPG with the excel workbook.
Any advice is appreciated.
I need your advice.
I have the following code which works by adding the a copy of the image to a cell in a column which the JPG is visible in the workbook.
However, when I send the workbook to another person the images don't appear to them unless I send them the JPG files as well.
I have tried googling what I can do to store the JPG in the excel file so I don't have to send the JPG with the excel workbook.
Any advice is appreciated.
VBA Code:
Sub URLPictureInsert()
Dim Pshp As Shape
Dim xRg As Range
Dim xCol As Long
On Error Resume Next
Application.ScreenUpdating = False
Set Rng = ActiveSheet.Range("F5:F5000")
For Each cell In Rng
filenam = cell
ActiveSheet.Pictures.Insert(filenam).Select
Set Pshp = Selection.ShapeRange.Item(1)
If Pshp Is Nothing Then GoTo lab
xCol = cell.Column + 1
Set xRg = Cells(cell.Row, xCol)
With Pshp
.LockAspectRatio = msoFalse
If .Width > xRg.Width Then .Width = xRg.Width * 2 / 3
If .Height > xRg.Height Then .Height = xRg.Height * 2 / 3
.Top = xRg.Top + (xRg.Height - .Height) / 2
.Left = xRg.Left + (xRg.Width - .Width) / 2
End With
lab:
Set Pshp = Nothing
Range("A2").Select
Next
Application.ScreenUpdating = True
End Sub