Excel VBA macros


page under construction by Mark Jacobson
  1. VBA Macros - variations on 23 birthdays probability problem.
    Sub ReportResult(repeatBirthday As Boolean)
        If repeatBirthday Then
            Range("D2").Value = Range("D2").Value + 1
        End If
        Range("E2").Value = Range("E2").Value + 1
    End Sub
    
  2. Racing rectangles game, using Excel VBA.

  3. WordArt macros using Visual Basic for Applications. Includes basics of WordArt for Excel, PowerPoint, and Word applications. Not yet ready...