images to fill the cells

KlausW

Active Member
Joined
Sep 9, 2020
Messages
378
Office Version
  1. 2016
Platform
  1. Windows
Hi
I have some images that are automatically inserted into cells on different sheets with this code. This works perfectly. Now I would like a Marco for the images to fill the cells.
Anyone who can help?
Any help will be appreciated.
Best Regards Klaus W
Code to insert images looks like this.

VBA Code:
ub Find()
    Dim A, B, c, d As Range ' a = området på "Billeder 1.deling med navne på foto, b = område i "Billeder" med navne på billeder, c = de enkelte celler i a, d = de enkelte celler i b
    ActiveSheet.Pictures.Delete ' de gamle billeder slettes
    Set A = Range("a4:d4,a8:d8,a12:d12,a16:d16,a20:d20") ' a defineres
    Set B = Worksheets("Billeder").Range("a4:L12") ' b defineres
    For Each c In A
        For Each d In B
            If c = d And c <> "" Then ' der testes om de enkelte celler i a findes i b
                d.Offset(-1, 0).Copy Destination:=c.Offset(-1, 0) ' hvis de findes, kopieres cellen ovenover i "Billeder" til cellen ovenover i "Billeder 1.deling"
            End If
        Next
    Next
    
   
     
End Sub
 
Last edited by a moderator:

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
Do you mean size the image so that it fits within the bounds of the cell you paste it into?
 
Upvote 0
sorry for the late reply. yes, that's how I'd like it. and maybe one or two millimeters between images and the edge of the cells.
 
Upvote 0
Try this.

VBA Code:
Sub Find()
    Dim A, B, c, d As Range ' a = området på "Billeder 1.deling med navne på foto, b = område i "Billeder" med navne på billeder, c = de enkelte celler i a, d = de enkelte celler i b
    ActiveSheet.Pictures.Delete ' de gamle billeder slettes
    Set A = Range("a4:d4,a8:d8,a12:d12,a16:d16,a20:d20") ' a defineres
    Set B = Worksheets("Billeder").Range("a4:L12") ' b defineres
    For Each c In A
        For Each d In B
            If c = d And c <> "" Then ' der testes om de enkelte celler i a findes i b
                d.Offset(-1, 0).Copy Destination:=c.Offset(-1, 0) ' hvis de findes, kopieres cellen ovenover i "Billeder" til cellen ovenover i "Billeder 1.deling"
                ResizePic(c.Offset(-1, 0).Address)
            End If
        Next
    Next
End Sub

Sub ResizePic(rngPicLocation As String)
   Const margin = 10 'margen
   Dim picCurrentPic As Picture
   Dim rngCell As Range

For Each picCurrentPic In ActiveSheet.Pictures
    If picCurrentPic.TopLeftCell.Address = Range(rngPicLocation).Address Then
        Set rngCell = picCurrentPic.TopLeftCell
        'picCurrentPic.LockAspectRatio = msoFalse
        picCurrentPic.Top = rngCell.Top + margin
        picCurrentPic.Left = rngCell.Left + margin
        picCurrentPic.Width = rngCell.Width - 2 * margin
        'picCurrentPic.Height = rngCell.Height - margin
    End If
Next picCurrentPic

End Sub

I have tested the ResizePic subroutine.
I'm not able to test it within your code but I've made a guess on where and how you would call it.

call it with "ResizePic("A1")"
set your margins with "margin = 10"
 
Upvote 0
Code:
Dim A, B, c, d As Range
At the above, A, B and c are variants.
It should be
Code:
Dim A As Range, B As Range, c As Range, d As Range
See here for more.
#5. How to Use Dim with Multiple Variables


What is in the cells in A? Range A is 20 cells.
What is in the cells in B? Range B is 108 cells
 
Upvote 0

Forum statistics

Threads
1,214,540
Messages
6,120,106
Members
448,945
Latest member
Vmanchoppy

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top