Related:
- Insert Picture in Ms Excell
- How to insert picture in word without moving text - Guide
- Insert check mark in word - Guide
- Insert gif in excel - Guide
- Ms picture manager download - Download - Image viewing and management
- Insert draft watermark in word on all pages - Guide
1 response
Do not ask me to write the complete code. I will give you a push in the right direction.
ACTIVESHEET.PICTURES.INSERT ("path to your image")
So, if we make a variable called "PICPATH", and assign it the value of a cell (where the name is stored), you can make a custom picture path for each person. As in:
PICPATH="C:\somefolder\images\" & activesheet.range("A1").value
Then:
ACTIVESHEET.PICTURES.INSERT (PICPATH)
Have fun!
ACTIVESHEET.PICTURES.INSERT ("path to your image")
So, if we make a variable called "PICPATH", and assign it the value of a cell (where the name is stored), you can make a custom picture path for each person. As in:
PICPATH="C:\somefolder\images\" & activesheet.range("A1").value
Then:
ACTIVESHEET.PICTURES.INSERT (PICPATH)
Have fun!