Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 4
Default Automatically resize a picture to a cell

How can I automatically resize a picture to a cell of preset width &
height?
  #2   Report Post  
Posted to microsoft.public.excel.programming
jaf jaf is offline
external usenet poster
 
Posts: 300
Default Automatically resize a picture to a cell

Why? A cell can not contain a picture.


John


"Gpompidou" wrote in message
...
How can I automatically resize a picture to a cell of preset width &
height?


  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 35,218
Default Automatically resize a picture to a cell

I use this to add a picture. Maybe you can pick out the pieces you need:


Option Explicit
Sub testme01()

Dim myPict As Picture
Dim myPictName As String

myPictName = "C:\test.jpg"

With ActiveSheet
With .Range("a1:b9")
Set myPict = .Parent.Pictures.Insert(Filename:=myPictName)
myPict.Top = .Top
myPict.Left = .Left
myPict.Width = .Width
myPict.Height = .Height
myPict.Name = "Pict_" & .Cells(1).Address(0, 0)
End With
End With
End Sub

I'm not sure if you want to fix the .width or the .height, though.




Manually, you could adjust its size/position by holding down the Alt key and
using the grab handles. The picture will snap-to the edges of the cells.

Gpompidou wrote:

How can I automatically resize a picture to a cell of preset width &
height?


--

Dave Peterson
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Resize cell to fit picture Gary888 Excel Discussion (Misc queries) 3 January 26th 10 04:19 PM
Can you use a formula to automatically display a picture in a cell Suthey1 Excel Worksheet Functions 1 May 15th 07 06:32 AM
Set up menu to resize picture upon right click Cavan Rothwell Excel Discussion (Misc queries) 1 July 3rd 06 08:21 PM
please help! Linking a picture to a cell and recalculating automatically [email protected] Excel Discussion (Misc queries) 3 July 1st 06 03:18 PM
How to insert picture and automatically size to cell? ursa_nz Excel Worksheet Functions 1 August 22nd 05 03:29 AM


All times are GMT +1. The time now is 11:18 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"