Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have built a worksheet with the following macro to insert a picture if a
certain cell is true. My question is that: I have three more pics to add if other individual cells are true. How do i code this? The following is the code that David gave to me and it works fine for that one picture. But two or more pictures for different cells?????? Thanks, GlennOption Explicit Private Sub Worksheet_Calculate() Dim oPic As Picture Me.Pictures.Visible = False With Range("I2") For Each oPic In Me.Pictures If oPic.Name = .Text Then oPic.Visible = True oPic.Top = .Top oPic.Left = .Left Exit For End If Next oPic End With End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Placing external data in a worksheet | Excel Worksheet Functions | |||
Searching for data and placing in new worksheet | Excel Worksheet Functions | |||
retaining fonts when placing excel worksheet into pagemaker? | Excel Discussion (Misc queries) | |||
PLACING PIC IN WORKSHEET USING MACRO | Excel Programming | |||
Worksheet reference (i.e placing worksheet name in a cell) | Excel Worksheet Functions |