Related:
- Insert Picture in Ms Excell
- How to insert picture in word without moving text - Guide
- Convert picture to shape powerpoint - Guide
- Start steam in big picture mode - Guide
- Disk boot failure insert system disk - Guide
- Shortcut insert picture excel - 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!