Adding and Formatting a Shape via Macro

Written by Allen Wyatt (last updated November 11, 2023)
This tip applies to Excel 2007, 2010, 2013, and 2016


Ron often uses Shapes (an oval, actually) to highlight things in a worksheet. He adds and sizes the shape, then he needs to change the shape color to red and delete any fill color so that it doesn't obscure what he's actually trying to highlight. He performs these steps quite often, and has no doubt this could somehow be sped up with a macro, but he's not sure how to go about it.

Before looking at macro-based solutions, you might want to consider some that don't require macros. For instance, if you create your oval (formatted as desired) and then right-click on it, you can set it as your default shape. This can speed the addition of the shape to your workbook in the future.

If you have multiple shapes, each a different size and color, you may want to simply copy those shapes to a different workbook. That workbook could be a "holder" for those shapes, so that you can copy them back to other workbooks, as needed. This is a great way to build your own gallery of standard shapes that can be used for years.

If you decide that a macro is the best way to go, then it is relatively easy to use one to add the oval. Here's a very simple one:

Sub Custom_Oval1()
    ActiveSheet.Shapes.AddShape(msoShapeOval, 150, 150, _
      120, 60).Select
    Selection.ShapeRange.Fill.Visible = msoFalse
    With Selection.ShapeRange.Line
        .DashStyle = msoLineSolid
        .Weight = 3
        .Visible = msoTrue
        .ForeColor.RGB = RGB(255, 0, 0)
        .Transparency = 0
    End With
End Sub

This inserts a standard oval, with desired color, fill, and transparency, at a single location in the worksheet. When it is done, the shape is still selected and you can then drag the oval to where you desire and make any adjustments in size that may be necessary.

If you prefer to have the oval closer to where you want, you can use a variation that looks at the active cell in the worksheet and places the oval around that cell, sized to the height and width of the cell:

Sub Custom_Oval2()
    Dim lLeft As Long
    Dim lTop As Long
    Dim lWidth As Long
    Dim lHeight As Long

    lLeft = ActiveCell.Left - 5
    lWidth = ActiveCell.Width + 5
    lTop = ActiveCell.Top
    lHeight = ActiveCell.Height + 5

    ActiveSheet.Shapes.AddShape(msoShapeOval, lLeft, _
      lTop, lWidth, lHeight).Select
    Selection.ShapeRange.Fill.Visible = msoFalse
    With Selection.ShapeRange.Line
        .DashStyle = msoLineSolid
        .Weight = 3
        .Visible = msoTrue
        .ForeColor.RGB = RGB(255, 0, 0)
        .Transparency = 0
    End With
End Sub

Note that this variation of the macro determines the location for the shape based on the location of the ActiveCell object. You could, if desired, change all occurrences of ActiveCell to Selection, which would allow the size of the oval to adjust to surround your selection rather than simply the active cell. Note, as well, that the left, width, and height values are adjusted slightly to give the oval a better fit. You may want to play with different adjustment values to get just the look you want.

ExcelTips is your source for cost-effective Microsoft Excel training. This tip (4631) applies to Microsoft Excel 2007, 2010, 2013, and 2016.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Picking a Workbook Format

Need to share workbook information with a wide number of people? It can be puzzling to figure out which version of Excel ...

Discover More

Creating Thin Spaces

Thin spaces are a typographic device that allows you add a bit of space between elements of a document. There are no thin ...

Discover More

Understanding a Style's Priority

Word allows you to assign priority values to individual styles. This tip explains what those values mean, along with how ...

Discover More

Dive Deep into Macros! Make Excel do things you thought were impossible, discover techniques you won't find anywhere else, and create powerful automated reports. Bill Jelen and Tracy Syrstad help you instantly visualize information to make it actionable. You’ll find step-by-step instructions, real-world case studies, and 50 workbooks packed with examples and solutions. Check out Microsoft Excel 2019 VBA and Macros today!

More ExcelTips (ribbon)

Changing the Size of a Graphic

Adding a graphic to a worksheet is easy. Getting that graphic to just the right size may take a little bit of trial and ...

Discover More

Positioning a Graphic in a Macro

Macros are a great way to process information in a worksheet. Part of that processing may involve moving graphics around ...

Discover More

Drawing Simple Objects

Want to draw a few simple shapes or lines on your worksheet? It really is simple; here's how to do it.

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is 6 - 1?

There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)


This Site

Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.

Newest Tips
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.