Teach coding to your kids with this maze game [VBA]

Share

Facebook
Twitter
LinkedIn

My twins (Nishanth & Nakshtra) are now almost 7. They are super keen to learn how computers work. So the other day, I showed them Code.org where there are several coding exercises disguised as games. They loved those games … err coding exercises. So that got me thinking… why not make a game in Excel that teaches kids simple programming concepts.

Here is the version 1.0 of Snowman & Hot Chocolate Maze game:

maze-game-demo

In this post, let’s understand how to build such a game using Excel VBA.

The idea

This maze game is inspired from the Angry Birds coding game at Code.org

The idea is simple. We create a 16×16 grid in Excel. We position a snowman at a certain point in the grid. We place a cup of hot chocolate at another point. The goal is to make snowman reach hot chocolate with a series of commands. Of course there will be obstacles (walls).

Typical Blank Maze with Snowman & Hot Chocolate loaded.

maze-game-ui

Since kids will be playing this, we need considerable variety of mazes. So let’s assume that,

  • There can be any number of mazes, one per spreadsheet.
  • Each maze can have a different design, different starting & ending positions.
  • Each maze can also have its own images (ie Rabbit & carrot in one maze, Kid and ice cream in another etc.)
  • Making new mazes should be easy. You can copy a worksheet, paste it, change the settings and all the code should work just the same.

The implementation

There are two components in this game.

  1. The front end – ie what players see
  2. The back end – ie our VBA code

Designing the front end

Here is the basic layout of our maze front end.

maze-game-ui-blank

We will create sheet specific named ranges for,

  • grid for the maze
  • settings for the settings
  • code.start for the first cell of the code

Displaying the symbols:

We can use the Segoe UI Emoji font. This font is part of all modern versions of Windows. This has a fine collection of various emojis that you see everywhere nowadays. The Emoji hex codes are,

  • 26C4 for Snowman
  • 2615 for hot chocolate
  • 2603 for Snowman with snow flakes

You can find more such emojis. Just go to Insert > Symbol and switch the font to Segoe UI Emoji font.

Note: download Segoe UI Emoji font if you don’t have it.

Adding the obstacles:

You (ie the parent) can write in any cell inside the maze to build an obstacle there. So once a new maze is cloned (ie a new worksheet is copy pasted), simply create a maze layout by typing into various cells.

conditional-formatting-obstacles

Pro tip: Just select the maze layout you want with CTRL+Select option and the type in any cell and press CTRL+Enter to get in all cells.

All these os will be displayed as walls thru conditional formatting.

Designing the VBA back end

There are two parts to our VBA code.

  • Setup the maze
  • Solve the maze

Setting up the maze

The logic for this is simple.

  1. Clear the grid contents, except when the cell has “o”
  2. Set up snowman at starting position
  3. Set up hot chocolate at ending position

Here is the code for Maze setup.



Private Sub setupGameSheet(name As String)
    'set up game sheet given by name
    Dim grid As Range, settings As Range, code As Range, cell As Range
    With Sheets(name)
        Set grid = Range("grid")
        Set settings = Range("settings")
        Set code = Range("code.start")
        
        For Each cell In grid
            If cell.Value2 <> "o" Then cell.ClearContents
        Next cell
        
        grid.Cells(settings.Cells(1, 1), settings.Cells(1, 2)) = settings.Cells(1, 3)
        grid.Cells(settings.Cells(2, 1), settings.Cells(2, 2)) = settings.Cells(2, 3)
        
        Set grid = Nothing
        Set settings = Nothing
        Set code = Nothing
    End With
    
End Sub

Solving the maze

This is where things get tricky.

Simplified algorithm for this goes like,

  • For each line of the code
    • Check the first character of the code.
    • If L, go left
    • If R, go right
    • If U, go up
    • If D, go down
    • by the number of steps indicated after first letter.
    • If the new position falls outside grid
      • If so, display an error and end macro
    • If the new position leads in to an obstacle
      • display an error and end macro
    • Else
      • Print a snow man along the pathway
    • If snow man reaches ending position
      • Print snow man with snow flakes. End macro
  • Continue to next line of code
  • If at end of all code, the snow man still not at ending point
    • Display an error message

Here is the code for this:


Private Sub runCode(name As String)
    'runs the code in sheet given by name
    
    setup
    
    Dim code As Range, settings As Range, grid As Range, steps As Integer
    Dim newx As Integer, newy As Integer, symbol As String, done As Boolean
    Dim endx As Integer, endy As Integer, oldx As Integer, oldy As Integer
    
    Set grid = Sheets(name).Range("grid")
    Set settings = Sheets(name).Range("settings")
    Set code = Sheets(name).Range("code.start")
    
    newx = settings.Cells(1, 2)
    newy = settings.Cells(1, 1)
    symbol = settings.Cells(1, 3)
    done = False
    endx = settings.Cells(2, 2)
    endy = settings.Cells(2, 1)
    
    While (Len(code) > 0 And Not done)
        oldx = newx
        oldy = newy
        
        steps = getNumber(code.Value2)
        Select Case UCase(Left(code, 1))
            Case "L"
                newx = newx - steps
            Case "R"
                newx = newx + steps
            Case "U"
                newy = newy - steps
            Case "D"
                newy = newy + steps
            Case Else
        End Select
        
        'check the boundary
        If newx < 0 Or newy < 0 Or newx > 16 Or newy > 16 Then
            MsgBox "Don't leave the box!", vbCritical + vbOKonlym, "Hold it there tiger..."
            done = True
        'check for obstacles
        ElseIf hasObstacles(Range(grid.Cells(oldy, oldx), grid.Cells(newy, newx))) Then
            MsgBox "Cant move there!", vbCritical + vbOKOnly, "Oo ooh! The snow man hit an obstacle"
            done = True
        Else
            Range(grid.Cells(oldy, oldx), grid.Cells(newy, newx)) = symbol
            
            If newx = endx And newy = endy Then
                done = True
                grid.Cells(newy, newx) = ChrW(doneSymbol)
            End If
            
        End If
        killTime
        Set code = code.Offset(1)
    Wend
    
    If Not done Then
        MsgBox "Your snowman is thirsty, fetch him the hot chocolate", vbCritical + vbOKOnly, "Try Again"
    End If
    
    Set grid = Nothing
    Set settings = Nothing
    Set code = Nothing
    
End Sub

Supporting functions

To keep the code clean, I have created two functions and one sub. They are here.



Const doneSymbol = &H2603
Const speed = 900 'change this to speedup / slowdown the game

Function getNumber(ByVal fromThis As Variant) As Integer
    'extract the number after first character
    'return 1 incase of error
    
    getNumber = 1
    On Error Resume Next
    getNumber = CInt(Mid(fromThis, 2))
    
End Function

Sub killTime()
    Dim i As Long
    
    For i = 1 To speed
        DoEvents
    Next i
End Sub
Function hasObstacles(thisRange As Range) As Boolean
    Dim cell As Range
    
    For Each cell In thisRange
        hasObstacles = hasObstacles Or cell.Value = "o"
        If hasObstacles Then Exit Function
    Next cell
End Function

Linking front end & VBA

Now that our UI & Code are ready, let’s link them up.

We set up two buttons on the worksheet (using rounded rectangle shapes), one for setup and other for running.

We write two simple macros and assign them to the buttons.


Sub setup()
    setupGameSheet ActiveSheet.name
    
End Sub

Sub run()
    runCode ActiveSheet.name
End Sub

And our game is ready.

Let’s roll, the snowman is thirsty.

nishanth-playing-maze-game

Download the Maze Coding Game

Go ahead and download the game workbook here. Examine the code to learn more. Ask your kids to play for some fun. The workbook contains 3 mazes. Feel free to add more.

How to extend this game?

Here are few ways to extend the game.

  • Add special point cells to the grid. When snowman passes thru these cells, score goes up.
  • Add a special power cell. If snowman reaches this cell, he gains the ability break obstacles.
  • Play sounds for jumps, points and breaks.

How do you like this?

My kids loved the idea. At the same time, they don’t want to play more than 2 puzzles at a time. I think they are attracted to Oggy and the cockroaches more than programming for now.

What about you? Do you find such games useful to teach programming and a love of computers to your kids. Let me know your experience once trying this.

Learn how to code yourself

Not just kids, anyone can benefit by learning how to program. So if you are new to coding, check out our five part tutorial on VBA.

Facebook
Twitter
LinkedIn

Share this tip with your colleagues

Excel and Power BI tips - Chandoo.org Newsletter

Get FREE Excel + Power BI Tips

Simple, fun and useful emails, once per week.

Learn & be awesome.

Welcome to Chandoo.org

Thank you so much for visiting. My aim is to make you awesome in Excel & Power BI. I do this by sharing videos, tips, examples and downloads on this website. There are more than 1,000 pages with all things Excel, Power BI, Dashboards & VBA here. Go ahead and spend few minutes to be AWESOME.

Read my storyFREE Excel tips book

Overall I learned a lot and I thought you did a great job of explaining how to do things. This will definitely elevate my reporting in the future.
Rebekah S
Reporting Analyst
Excel formula list - 100+ examples and howto guide for you

From simple to complex, there is a formula for every occasion. Check out the list now.

Calendars, invoices, trackers and much more. All free, fun and fantastic.

Advanced Pivot Table tricks

Power Query, Data model, DAX, Filters, Slicers, Conditional formats and beautiful charts. It's all here.

Still on fence about Power BI? In this getting started guide, learn what is Power BI, how to get it and how to create your first report from scratch.

24 Responses

  1. I’d suggest simply using the subtotal function and filtering the data using the Win/Loss column.  You get the same results and the formula is more comprehensible.

    1. @John

      That is one option.

      There are times however when you want to see the whole data table or a filtered subset and still want to produce summary reports against an unfiltered field.

  2. Is there a particular reason why you are using a comma and the unary (–) operator for the second array in the SUMPRODUCT formula?  It seems to work the same if you were to string the arrays together using the asterisk (*).  The advantage is that SUMPRODUCT treats the entire string of arrays as a single array.

  3. Is there a way to do this on a large set of data? As in ~100,000 rows? When I try I get an error because the formula becomes too long. It says the max length of a formula is 8,192 characters. Excel 2010.

  4. How do I incorporate a specific text within a cell for the second array. For instance, – -(C7:C13=”Apple”)
    when I chose a specific text the formula does not work.

    1. @RB

      I am not sure what is the issue as if I use the sample data in the post the following work fine

      Count:
      =SUMPRODUCT(SUBTOTAL(3,OFFSET(C7:C13,ROW(C7:C13)-MIN(ROW(C7:C13)),,1)), –(C7:C13=”L”))
      Sum:
      =SUMPRODUCT(SUBTOTAL(3,OFFSET(C7:C13,ROW(C7:C13)-MIN(ROW(C7:C13)),,1)),(C7:C13=”L”)*(D7:D13))

      You may want to check that there are no leading or trailing spaces in your list of Apples

      1. I should have given a better explanation. Heres my situation. I have a column with cells filled with names like Column 1, Column 2, Pier 1, Pier 2, etc. If the cell just contained Pier and searched for that it works. But because it has other characters in the cell its not recognizing the pier. So how can I extract specific characters of a string of text in this formula?

        Hopefully this was a better explanation

  5. Hello-

    This formula works pretty well for me except that it slow down excel and prevents some of my macros from working. I was wondering if there was a way to program this in VBA so that excel isn’t always trying to recalculate it. I would like to use a push of a button to get it to run then paste in a cell.

    Thanks!

  6. I am trying to sum filtered data in a column, but would want to ignore the negative values in the column. How to go about doing this?

      1. The negative values are required for reporting purposes, but their effect on the total is distorting the required output. Please advise.

  7. I have this working for counting and summing, however, I have a list and for the second array, I need a criteria. That is, I’m looking for b13:b200=”01.??.??” or =left((a1,2) or something like that. These types of criteria matches do not appear to work as I get a blank as a result.
    Thanks!

    1. @Bob

      As your formula b13:b200=”01.??.??” looks like you are trying to check the first day of the month of the range
      What about trying Day(B13:B200)=1

  8. Hai Experts,
    i understood this formula well and working fine in MS Excel 2013
    but when the same am trying to place in google Spreadsheet it shows error as
    “SUMPRODUCT has mismatched range sizes. Expected row count: 1. column count: 1. Actual row count: 2014, column count: 1.” and as a result #VALUE! Appears in cell.
    Can anyone please help me how would i get it done in Google Spread sheet
    or is there any other formula as a substitute for this.
    Thank you very much.

    1. @Vivek

      I don’t know

      I just downloaded the file and it is working fine and not showing that error

      Goto the Formulas, Calculation Options Tab and check that Calculation is set to Automatic

      What version of Excel and Windows are you using ?

  9. I know that this forum is for MS Excel, but I am trying to help someone who is working in Google Sheets. The below formula works in Excel but Google Sheets returns:
    “SUMPRODUCT has mismatched range sizes. Expected row count: 1. column count: 1. Actual row count: 39000, column count: 1.” and as a result #VALUE! Appears in cell.
    This is the same problem asked by Srichirin above. Does anyone know if there is a formula for Google Sheets that will replicate what MS Excel does?

    =SUMPRODUCT(SUBTOTAL(3,OFFSET($C$6:$C$39500,ROW($C$6:$C$39500)-MIN(ROW($C$6:$C$39500)),,1)),- -($C$6:$C$39500=H1),($D$6:$D$39500))

  10. Trying to find a SUMPRODUCT formula that counts the word Closed by date for the last 7 days in a filtered list.
    =COUNTIF(M:M,”>”&TODAY()-7) works ok for unfiltered count Column M contains Closure dates (blank if open) and Column L is Status Open or Closed

  11. I used this formula and worked like a charm! But, now I’ve been requested to use it but adding not one but two criteria in the same formula. For instance the sum I was doing added negative and positive numbers. I’ve been asked to use the exact same formula but adding that only positive numbers were considered… any idea on how to do this?

  12. Thank you so much brother literally I have been struggling since morning to get the sum of the filtered category, however, after reading your blog attentively i got my solution, so thanks a lot once again.

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.