How to insert multiple pictures at once in excel cells | Insert picture in excel cells automatically

preview_player
Показать описание
How to insert multiple pictures / photos / images at once in excel. Insert picture / photo / image in excel cell / sheet automatically.
excel formulas and functions
data entry tutorial in telugu
what is data entry in telugu
data entry telugu
how to do data entry work
advanced excel tutorial in telugu

Click below link for down load VBA code (text file)

Copy below code and save in your computer

Sub InsertPictures()
Dim PicList() As Variant
Dim PicFormat As String
Dim Rng As Range
Dim sShape As Shape
On Error Resume Next
PicList = Application.GetOpenFilename(PicFormat, MultiSelect:=True)
xColIndex = Application.ActiveCell.Column
If IsArray(PicList) Then
xRowIndex = Application.ActiveCell.Row
For lLoop = LBound(PicList) To UBound(PicList)
Set Rng = Cells(xRowIndex, xColIndex)
Set sShape = ActiveSheet.Shapes.AddPicture(PicList(lLoop), msoFalse, msoCTrue, Rng.Left, Rng.Top, Rng.Width, Rng.Height)
xRowIndex = xRowIndex + 1
Next
End If
End Sub
Рекомендации по теме
Комментарии
Автор

Excellent Sir I was a same problem in excel every time working with images today you solve it..I could understand the Tamil I guess but I understand the logic great sir..
\

datascientist
Автор

Just looking for this function. Thank you thank you so much sir. Chaala clear ga chepparu sutti lekunda

mallika
Автор

Thank you soo much! I used to spend more than an hour everyday resizing the images

snuggledash
Автор

I was looking for this all over the internet, Thanks a Ton!!

manojkumarchelmal
Автор

You are a genius! Really appreciate your help 🙏

AA_
Автор

I have seen many videos in hind or english but this one really helps me.

mohdmujahidnasir
Автор

Sir you have saved me HOURS today, thank you!!!

edthbkk
Автор

REALLY APPRECITATE YOU .... THANKS ...

sakkirali
Автор

Very Usefull Thanks a Lot Sir 👍👍👍👍
Hopefully can share any code for horizontal version 😁😁😁

azwaranas
Автор

Thank you very much sir, this is single column photos fixing sir, please tell me double coloumn photos fixing sir

ramamohanaraokonidala
Автор

Sub or function not defined ani vadthundi

agent-
Автор

Seriol number kakunda vere emi ayena tesukovacha

ravisankar
Автор

Namste sir,
Filter commond not to come in photo column and no filter photos only data is filter, please tell me what is the reason.
Thanking you

pratishtapattar