Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Dear all
I have below code to insert photo automatically to each line, I need your help to add looping to the code to run same code each line till the empty line. Many thanks Abdul kader == her the code == Sub GetPhoto() Dim myPict As Picture Dim myPictName As String Dim rng As Range Set rng = ActiveCell myPictName = rng With ActiveSheet With .Range("AA1:AA50") If IsEmpty(ActiveCell) Then Exit Sub On Error Resume Next If IsEmpty(ActiveCell.Offset(-1, 0)) Then Set TopCell = ActiveCell Else Set TopCell = ActiveCell.End(xlUp) If IsEmpty(ActiveCell.Offset(1, 0)) Then Set BottomCell = ActiveCell Else Set BottomCell = ActiveCell.End(xlDown) Range(TopCell, BottomCell).Select Set myPict = .Parent.Pictures.Insert(Filename:=myPictName) rng.Select myPict.Top = rng.Top myPict.Left = rng.Left myPict.Width = rng.Width myPict.Height = rng.Height myPict.Name = "Pict_" & .Cells(1).Address(0, 0) End With End With End Sub == end of the code == |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Help- Insert text if photo file not available | Excel Discussion (Misc queries) | |||
Insert Photo - help | Excel Discussion (Misc queries) | |||
how do I insert a photo in a protected .xls spreadsheet | Excel Discussion (Misc queries) | |||
Insert photo into a protected worksheet | Excel Worksheet Functions | |||
Insert Photo into a protected worksheet | Excel Worksheet Functions |