excellkurdu
Altın Üye
- Katılım
- 16 Nisan 2008
- Mesajlar
- 313
- Excel Vers. ve Dili
- Türkçe Microsoft Office Excel 2007
- Altın Üyelik Bitiş Tarihi
- 22-03-2026
Arkadaşlar merhaba,
Ekteki kod resim ekliyor. fakat bir hücreye ekliyor. Resmi c39:k46 birleştirilmiş hücre alanına nasıl ekleyebiliriz?
Şimdiden teşekkür ederim
Ekteki kod resim ekliyor. fakat bir hücreye ekliyor. Resmi c39:k46 birleştirilmiş hücre alanına nasıl ekleyebiliriz?
Şimdiden teşekkür ederim
Kod:
Sub Ekle_resim()
Call resimsil
Dim NoA As Long, i As Long
Dim PicFile As String, PicTop As Integer, PicLeft As Integer, PicW As Integer, PicH As Integer
NoA = Range("A" & Rows.Count).End(xlUp).Row
For i = 39 To NoA
PicFile = "C:\Dosyalarım\pestkontrol\firmalar\Sistem\_Fumigasyon\" & Range("A" & i).Text & ".jpg"
If Dir(PicFile) = Empty Then
Range("C" & i) = "Resim bulunamadı..!"
GoTo ResumeFor:
End If
PicTop = Range("C" & i).Top '???????????
PicLeft = Range("C" & i).Left '???????????
PicW = Range("C" & i).Width '???????????
PicH = Range("C" & i).Height '???????????
Set MyPic = ActiveSheet.Shapes.AddPicture(PicFile, True, True, PicLeft, PicTop, PicW, PicH) '???????????
ResumeFor:
Next
End Sub
Sub resimsil()
Dim Resim As Picture, Alan As Range
Set Alan = Range("C39:C41")
For Each Resim In ActiveSheet.Pictures
If Not Intersect(Resim.TopLeftCell, Alan) Is Nothing Then
Resim.Delete
End If
Next
Set Alan = Nothing
' MsgBox "İşleminiz tamamlanmıştır.", vbInformation
End Sub