Results 1 to 7 of 7

Insert Excel Shape at Active Cell - Final help needed Please

Threaded View

  1. #1
    Registered User
    Join Date
    07-05-2009
    Location
    Bolton, England
    MS-Off Ver
    Excel 2007
    Posts
    9

    Insert Excel Shape at Active Cell - Final help needed Please

    Hi I have this little piece of code that inserts a circle into my active worksheet, but I'm stuck as to how I make it appear at / on the currently activecell.

    Really grateful if anyone could advise please.

    Thanks

    Sub shapes()
    Dim wks As Worksheet
        Dim shape1 As Shape
            
        Set wks = ActiveSheet
        Set shape1 = wks.shapes.AddShape(msoShapeOval, 100, 100, 80, 80)
        
        With shape1
            .Line.ForeColor.RGB = RGB(255, 0, 0)
            .Fill.Transparency = 1
        End With
            
    End Sub
    Last edited by PeterF; 12-26-2012 at 07:29 PM.

Thread Information

Users Browsing this Thread

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

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