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:

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.

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.
- The front end – ie what players see
- The back end – ie our VBA code
Designing the front end
Here is the basic layout of our maze front end.

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 o 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 o into various cells.

Pro tip: Just select the maze layout you want with CTRL+Select option and the type o in any cell and press CTRL+Enter to get o 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.
- Clear the grid contents, except when the cell has “o”
- Set up snowman at starting position
- 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.

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.












27 Responses to “Sum of Values Between 2 Dates [Excel Formulas]”
I would apply a filter and use function subtotal, with option 9. This way you can see multiple views based on the filter.
hey Chandoo, the solutions you proposed are very efficient, but if I wanted to be fancy I would do it this way .. the references are as your example workbook.
=SUM(INDIRECT("C"&(MATCH(F5,B5:B95)+4)):INDIRECT("C"&(MATCH(F6,B5:B95)+4)))
I like things simple:
=SUMIF(B5:B95,">="&F5,C5:C95)-SUMIF(B5:B95,">"&F6,C5:C95)
use something like: =SUM(OFFSET(B1,0,0,DATEDIF(A1,D1,"d")))
and have D1 be the date that I want to sum to.
In Excel 2003 (and earlier) I'd use an array formula to calculate either with nested if statements (as shown here) or with AND.
{=SUM(IF(B5:B95>F5,IF(B5:B95<F6,C5:C95,0),0))}
Note that I truly made this for BETWEEN the dates, not including the dates
I turned the data set into a table named Dailies.
I named the two limits StartDate and EndDate.
And used an array formula:
{=SUM((Dailies[Date]>=StartDate)*(Dailies[Date]<=EndDate)*Dailies[Sales])}
If I would still be using the old Excel I would do it as follows:
SUMIF($B$5:$B$95,"<="&H6,$C$5:$C$95)-SUMIF($B$5:$B$95,"<"&H5,$C$5:$C$95)
Works as simple as it is.
Regards
=sum(index(c:c,match(startdate,c:c,1)+1):index(c:c,match(enddate,c:c,1))
=sum(index(c:c,match(startdate,b:b,1)+1):index(c:c,match(enddate,b:b,1))
Great examples and thanks to Chandoo. You have simplified my work.
Hi! great tips I have found in your page, have you seen this
http://runakay.blogspot.com/2011/10/searching-in-multiple-excel-tabs.html
[...] I'm not sure I understand your question fully, but have a look at this: Sum of Values Between 2 Dates [Excel Formulas] | Chandoo.org - Learn Microsoft Excel Online [...]
Thank you! Thank you! Thank you!
=SUMIF(A2:A11;">="&B13;B2:B11)-SUMIF(A2:A11;"<"&A11;B2:B11)
awesome... thank yoo Chandoo!
which is most efficient and fast, if all are efficient ?
Thank you for this formula, I've just spent ages trying to find something to work on my data, I knew it would be possible! Don't care if others think there are easier/other ways to do it, you explained it so I understood it and could apply it to what I was doing so I'm happy!
The above said example is awesome for calculating values between dates,
can you pls let know how to calculate sale values if we have 10 sales boys for
ex: 1,rama
2,krishna
3,ashwin
4,naga
5,suresh
how much rama sale value between 1/jan/2015 to 10/jun/15
how much krishna sale value between 10/jan/2015 to 15/july/2015
i think you understood can you pls let me know the formula for how to calculate the sale between diffrent sale man sale value from master data file
Thanks,
Nagaraju
Hi
I have a list of people's names in column A, I have a list of dates in column B which records the dates they have been off sick, in column C I have either 1 if it is a full sick day or 0.5 if it is a half day.
What I would like to do is to add up the number of dates a specific person has been off within two dates.
For example, I want to look at my list of names and to find Joe Bloggs (column A), then add up all his sick days (column C). The start date will be in cell E1 and the end date will be in F1.
If this possible using SUMIFS?
List of names are in range A2:A100
List of dates in B2:B100
List of sick days (either 0.5 or 1 in C2:C100
The start date is in cell E2
The end date is in cell F2
Your help would be greatly appreciated.
Yes, with the help of SUMIFS you can have the solution.
Note: you need have an extra col. D2 where you will input Name of the person.
=SUMIFS(C2:C100,A2:A100,D2,C2:C100,">="&E2,C2:C100,"<"&F2)
Col. A Col. B Col. C Col.D Col. E Col. F
Name Date Sales
ABC 28-Jun-11 1 MNO 28-Jun-11 25-Sep-11
XYZ 29-Jun-11 0.5
MNO 30-Jun-11 1
PQR 1-Jul-11 1
Typo ERROR / Correction in formula:
Yes, with the help of SUMIFS you can have the solution.
Note: you need have an extra col. D2 where you will input Name of the person.
=SUMIFS(C2:C100,A2:A100,D2,B2:B100,">="&E2,B2:B100,"<"&F2)
Hi
I have a list of people's names in column A, I have a list of dates in column B which records the dates they have been off sick, in column C I have either 1 if it is a full sick day or 0.5 if it is a half day.
What I would like to do is to add up the number of dates a specific person has been off within two dates.
For example, I want to look at my list of names and to find Joe Bloggs (column A), then add up all his sick days (column C). The start date will be in cell E1 and the end date will be in F1.
If this possible using SUMIFS?
List of names are in range A2:A100
List of dates in B2:B100
List of sick days (either 0.5 or 1 in C2:C100
The start date is in cell E2
The end date is in cell F2
Your help would be greatly appreciated.
Viv
@Viv
Can you please post the question in the Chandoo.org Forums
http://forum.chandoo.org/
Please attach a file so that a specific answer can be delivered.
Thanks for this - it solved the problem that I was having. However can someone please explain to me why the "" needs to be around >= and <= as well as why we need to add & in order for the formula to work? Thanks in advance!
This formula works perfectly as well. Any ideas?: =SUM(INDEX(C5:C95,MATCH(H5,B5:B95,1)):INDEX(C5:C95,MATCH(H6,B5:B95,1)))
ikkeman had posted the same thing.
I am trying to sum total a range of cells between date ranges ie column n has $ amounts column d has the transaction dates ie 1/3/2015 or 25/3/2015 or 25/4/2015 column b has the text saying drp or distribution - reinv
In another cell I am trying to sum or total (in column n) with the value of a range of different dates (column d) that contain different text (column b) ie cell n48 is 50, n65 is 85, n165 is 36
with the dates ie cell d48 is 1/3/2015, d65 is 25/3/2015 and d165 is 25/4/2015
with different text that says drp or distribution - reinv ie cell b48 is drp, b65 is distribution - reinv, b165 is drp
If I wanted to sum the amounts between 1/3/2015 to 31/3/2015 with drp then the total would be 50. Also if I wanted to sum the amounts between 1/4/2015 to 30/4/2015 with drp the sum total would be 36 If I wanted to sum the amounts between 1/3/2015 to 31/3/2015 with drp and distribution - reinv the sum would be 115
What would the formula be for these different questions
hope you can help, it has been driving me nuts and cant work it out