Felix is writing a macro to add a graphic to a worksheet. He needs to position the graphic relative to the top-left corner of a particular cell. He wonders how he can place the graphic, within the macro code, so it is just to the right and beneath the upper-left corner of a given cell.
This task is relatively easy to do if you realize that each cell in a worksheet has both a Top and Left property that defines the location of both the top and left edges of the cell. You can adjust those values, slightly, to get the offset that you want, in this manner:
Dim rCell As Range Set rCell = Range("A2") With ActiveSheet.Shapes("Picture 1") .Top = rCell.Top + 5 .Left = rCell.Left + 3 End With
Note that after this code is executed the graphic (defined by the name Picture 1) is placed just below the top edge of cell A2 and just to the right of its left edge.
Note:
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (9725) applies to Microsoft Excel 97, 2000, 2002, and 2003. You can find a version of this tip for the ribbon interface of Excel (Excel 2007 and later) here: Positioning a Graphic in a Macro.
Excel Smarts for Beginners! Featuring the friendly and trusted For Dummies style, this popular guide shows beginners how to get up and running with Excel while also helping more experienced users get comfortable with the newest features. Check out Excel 2013 For Dummies today!
Determining the length of a text string is easy, but figuring out how many pixels are represented by those characters is ...
Discover MoreWhen you create a chart, Excel attempts to assign colors to your data series that it thinks will work best for you. If ...
Discover MoreAutoShapes can easily contain text—just click on the shape and start typing away. You may want the text in the ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2015-04-01 10:58:40
Kelly Runyon
Interesting and helpful add-on from Morris... thanks for that!
2015-03-28 12:40:06
Morris Manning
Great tip! Wish I had had it when I was designing a budgeting template.
I have a budget application that has a command button attached to each account line-item that does something. The number of rows of data detail may vary within line-iems. When data is entered into a line item, a criteria (*) is automatically set in an adjacent column.
Using a toggle button to filter the sheet data, I can roll-up and show only the rows with data. (Toggling the filter off reveals all accounts.) The problem I encountered is that the line-item command buttons would move, sometimes piling on top of each other.
I used the method decribed in this tip to anchor command buttons to the appropriate cells in the budget detail sheet by calling the above code in the toggle-button code. In order to accommodate variable rows of data, I assigned range names to cells with attached command buttons rather than cell coordinates. That overcomes the problems of fixed cell references with variable data. I also included code to make the buttons invisible during the roll-up. In the cell under each button is the account code which is visble during the roll-up but hidden by the command buttons when data is unfiltered.
Got a version of Excel that uses the menu interface (Excel 97, Excel 2000, Excel 2002, or Excel 2003)? This site is for you! If you use a later version of Excel, visit our ExcelTips site focusing on the ribbon interface.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2021 Sharon Parq Associates, Inc.
Comments