Wednesday, February 26, 2025

Excel Geometric Shapes

In this post we will create a game to find pairs of geometric shapes in Excel using VBA macros. It is a good example to practice working with the Shape object. We will see how to add a shape with Excel VBA, move a shape, modify properties of the Excel shape object, or delete the shape. We will be working with AutoShape objects as per MsoAutoShapeType enumeration.


Add Shapes

The first macro clears the AutoShape objects in the active worksheet and randomly adds pairs of AutoShape objects that fit each of the cells in the main board. Here’s the main statement to add a shape object of the type AutoShape in Excel VBA.

 
  Set shp1 = ActiveSheet.Shapes.AddShape(shpType, shpLeft, shpTop, shpWidth, shpHeight)
 


Where shpType is the type of AutoShape that follows the MsoAutoShapeType enumeration, and the other arguments specify the position and dimension of the shape. The position and dimension is relative to the cell in the worksheet, so that each shape fits the range. Additionally, the size of the shape has a random component to show shapes in different sizes. The shapes are also rotated randomly. See below how shapes look like when added and rotated in each cell.



We can set the line and fill color of the shape as indicated below. Note that we use the RGB property, which accepts three parameters for red, green, and blue colors with values from 0 to 255. In the example above, only a given fill color is used, while the line color is the default. The values for r, g, and b are taken randomly.

 
  shp1.Fill.ForeColor.RGB = RGB(r, g, b)
  shp1.Line.ForeColor.RGB = RGB(r, g, b)
 

 

Select Shapes

Players need to select pairs of shapes with the same geometry. In order to allow players select a shape, a macro is assigned to all shapes when added to the Excel worksheet. Each shape is given a distinctive name, so that when the macro runs it knows which shape has been selected. Here’s how we assign a macro to a shape in Excel VBA. The macro “CheckBox” will run when clicking on the shape.

 
  shp1.OnAction = "CheckBox"
 


The name for each shape corresponds to the number in the loop followed by the letter A or B (for shp1 and shp2 respectively). Each time, two shapes of the same type are added, and therefore, one carries the letter “A” and the other the letter “B”. This is the way we recognize a pair of shapes later in the code.


 

When selecting a shape object, the macro “CheckBox” will first indicate that the shape has been selected by changing the line color to yellow. The name of the selected shape is retrieved with Application.Caller.

 
  shpname = Application.Caller
  ActiveSheet.Shapes(shpname).Line.ForeColor.RGB = RGB(255, 255, 0)
 


When selecting the shape the first time, the macro stores that shape into an object variable (selBox). That’s how we know that a shape has been selected and which shape it is. The second time, the macro compares the previous shape (stored as selBox) with the next selected shape. If both shapes are of the same type (the name includes the same number), another macro is called to move them away from the board. When that happens, the object variable selBox is set to nothing again.


Move Shapes

When matched, shapes are moved to the front to show it’s the right pair of shapes. After that, both shapes are deleted. Excel macros to move shapes simply target the position properties Left and Top of a given shape object. In this game, they are moved to a central location in the board. Furthermore, they get bigger and brought to the front to be on top of any other shape in the game board. Here’s how we bring a shape to the front in Excel VBA.

 
  Dim shp As Shape
  Set shp = ActiveSheet.Shapes(shpname)
  shp.ZOrder msoBringToFront
 


 

And to make them bigger, we simply modify the Width and Height properties of the shape object. In this game, this size has been set to 150 points, so that it is visible. That number is used later to recognize which shapes have to be deleted. There is a delay of one second between showing the pair and calling another macro to delete them. We do that with the OnTime method of the Application object as indicated below.

 
  Application.OnTime Now + TimeValue("00:00:01"), "DeleteShapes"
 


The macro “DeleteShapes” will run after a second has passed. However, we cannot add pass any arguments along that call. As explained above, the macro targets and deletes the AutoShape objects (shape type 1) of a certain size (150 points). Find here the Shape type enumeration (msoShapeType) and do not confuse it with AutoShape type enumeration (msoAutoShapeType).

But we could also call the macro passing the shape objects to be deleted (selBox and selBox2) and have a Wait function in the other macro to stop for one second before deleting. As always, there are many different ways to do things and write code in Excel VBA.

And that was a simple example of how we can work with shapes in Excel VBA. The game is just a fun example to practice with the shape object in Excel. Follow the link below to get the game in Excel and see the code. Feel free to share any comments and have a look around other posts and games. You can also find many explanatory videos in my YouTube channel: Excel Macro Mania

 

Download Excel Geometric Shapes


No comments:

Post a Comment

Popular Posts