View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Tom Ogilvy Tom Ogilvy is offline
external usenet poster
 
Posts: 27,285
Default Picture the same size as a cell

the basic approach is

Sub SizePicture()
Set shp = ActiveSheet.Shapes(1)
With Cells(5, 4)
shp.Top = .Top
shp.Left = .Left
shp.Width = .Width
shp.Height = .Height
End With
End Sub

You may have to look at the aspect ratio settings.

--
Regards,
Tom Ogilvy

"Nater " wrote in message
...
Hi I am new to programming and I was just wondering how to make a .jpg
image the same size as a cell? I know that you can not insert a
picture into the acctual cell i just want it the same size. Also is
there a way to use the compress image feature in excel through VBA?
Thanks in advance :)


---
Message posted from http://www.ExcelForum.com/