Skip to main content

AccessTr.neT


Hücre İçine Resim Ekleme

Hücre İçine Resim Ekleme

#2
Sayın Jer Fin alttaki kodu dener misiniz?
Sub Resim_Al()
Dim a As Integer
Dim son As Integer
Dim resim As String
son = Range("H" & Rows.Count).End(xlUp).Row
On Error Resume Next
For a = 3 To son
resim = Cells(a, 8)
With ActiveSheet.Pictures.Insert(resim)
.Left = Cells(a, 16).Left
.Top = Cells(a, 16).Top
.ShapeRange.LockAspectRatio = True
.ShapeRange.Height = 49
End With
Rows(a).RowHeight = 50
Next a
On Error GoTo 0
MsgBox "İşlem Tamam", vbInformation, "userx"
End Sub
"Dünyayı fazla düşünme."
Cevapla

Bir hesap oluşturun veya yorum yapmak için giriş yapın

Yorum yapmak için üye olmanız gerekiyor

ya da

Bu Konudaki Yorumlar
Hücre İçine Resim Ekleme - Yazar: Jer Fin - 20/05/2021, 14:14
RE: Hücre İçine Resim Ekleme - Yazar: userx - 20/05/2021, 19:06
RE: Hücre İçine Resim Ekleme - Yazar: Jer Fin - 23/05/2021, 18:27
Task