+ Reply to Thread
Results 1 to 5 of 5

Edit Macro so "Picture 1" is Visible

Hybrid View

aaron061883 Edit Macro so "Picture 1" is... 10-22-2013, 01:18 AM
patel45 Re: Edit Macro so "Picture 1"... 10-22-2013, 01:40 AM
aaron061883 Re: Edit Macro so "Picture 1"... 10-22-2013, 09:12 AM
patel45 Re: Edit Macro so "Picture 1"... 10-22-2013, 09:19 AM
aaron061883 Re: Edit Macro so "Picture 1"... 10-22-2013, 09:54 AM
  1. #1
    Forum Contributor
    Join Date
    09-11-2012
    Location
    minot, north dakota
    MS-Off Ver
    Excel 2010
    Posts
    127

    Edit Macro so "Picture 1" is Visible

    I am not sure how to edit this macro so that "Picture 1" will be visible. Currently all the pictures are not visible except for the one that is found in cell H1. Picture 1 will always be visible and the other pictures that change need to be invisible when not selected.

    Option Explicit
    
      Private Sub Worksheet_Calculate()
            Dim oPic As Picture
            Me.Pictures.Visible = False
            With Range("H1")
                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

  2. #2
    Forum Expert
    Join Date
    07-15-2012
    Location
    Leghorn, Italy
    MS-Off Ver
    Excel 2010
    Posts
    3,431

    Re: Edit Macro so "Picture 1" is Visible

    Option Explicit
    
      Private Sub Worksheet_Calculate()
            Dim oPic As Picture
            Me.Pictures.Visible = False
            ActiveSheet.Shapes("Picture 1").Visible = True
            With Range("H1")
                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
    If solved remember to mark Thread as solved

  3. #3
    Forum Contributor
    Join Date
    09-11-2012
    Location
    minot, north dakota
    MS-Off Ver
    Excel 2010
    Posts
    127

    Re: Edit Macro so "Picture 1" is Visible

    There is one problem with the Picture 1 Visible line. The dropdown that links to all other sheets that have the pictures is a input sheet that all other sheets are linked to. When the picture changes it is done by changing the name on the input tab. Therefore the picture is not on active sheet. Is there any way to indicate Visible Picture 1 for all tabs?

  4. #4
    Forum Expert
    Join Date
    07-15-2012
    Location
    Leghorn, Italy
    MS-Off Ver
    Excel 2010
    Posts
    3,431

    Re: Edit Macro so "Picture 1" is Visible

    try with
    Me.Shapes("Picture 1").Visible = True
    otherwise attach a sample file for testing

  5. #5
    Forum Contributor
    Join Date
    09-11-2012
    Location
    minot, north dakota
    MS-Off Ver
    Excel 2010
    Posts
    127

    Re: Edit Macro so "Picture 1" is Visible

    Solved thanks for all the Help

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Macro only shows "create" button. Can't run/edit/delete.
    By nbpat in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 07-31-2019, 03:44 AM
  2. Macro to open a "Protected View" workbook and enabling edit
    By WaqasTariq in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 02-13-2013, 05:25 PM
  3. Replies: 0
    Last Post: 04-03-2007, 10:26 AM
  4. [SOLVED] Make "Edit" mode default, rather than "Enter"?
    By Greg Boettcher in forum Excel General
    Replies: 1
    Last Post: 07-26-2006, 08:50 PM
  5. Replies: 0
    Last Post: 08-24-2005, 04:05 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1