How to Create Calendar Using VBA in Excel (with Easy Steps)

Here’s the overview of the calendar we’re going to create.

Excel VBA Calendar


Step 1 – Preparing an Outline of the Calendar with a UserForm and VBA in Excel

  • Go to the Developer tab and select Visual Basic.
  • This will bring out the VBA Editor window.
  • You can also press Alt + F11 keys to bring out the VBA Editor window.

Using Developer Tab to Create Excel VBA Calendar

  • From the Insert tab, select UserForm.

Inserting UserForm to Create Excel VBA Calendar

  • You will see the UserForm.
  • Right-click on the UserForm and select Properties.

Right-Click on properties

  • A Properties window will appear on the right side of the UserForm.
  • Set the Name. You can set any Name, but we put the name Calendar.
  • Click on the drop-down arrow of the BackColor box.
  • From Palette, select White.

Chose color for calendar

  • Set the Caption as Calendar.
  • Click on the drop-down arrow of the SpecialEffect box.
  • Select 3-fmSpecialEffectEtched.

  • The outer template of the Excel VBA Calendar is ready.

Created Outline for Excel VBA Calendar


Step 2 – Inserting Labels into the Outline

  •  Click on the Toolbox.

Inserting Toolbox to Create Excel VBA Calendar

  • Select a Label from the Toolbox and draw the label in the Calendar.

  • We have named the label Month.
  • Right-click on Month and select Properties.

  • In the Properties window, click on the drop-down arrow of the BorderColor box.
  • Select 0-fmBackstyleTransparent.

  • We inserted the Year label in the same way.

Inserting Month and Year Labels to Create Excel VBA Calendar


Step 3 – Adding ComboBoxes

  • Select a ComboBox from the Toolbox.
  • Draw the ComboBox next to Month.

Adding ComboBoxto Create Excel VBA Calendar

  • Right-click on the ComboBox and select Properties.

  • In the Properties window, set the Name as Cmb_Month.

Giving Name to ComboBox to Create Excel VBA Calendar

  • Select 3-fmSpecialEfectEtched as the SpecialEffect.
  • Select 2-fmStyleDropDownList as the Style.

  • Copy the ComboBox by right-clicking on it and selecting Copy.

  • Paste the copied ComboBox next to the Year label.
  • Right-click on the ComboBox and select Properties.

Inserting ComboBox for Year to Create Excel VBA Calendar

  • A Properties window will appear.
  • Set the Name as Cmb_Year.

  • Select all the labels and ComboBoxes by pressing the Ctrl key.
  • Right-click on them.
  • From the Align group, we will select Middles.

Aligning ComboBoxes and Lebels in Center to Create Excel VBA Calendar

  • Here’s the result.


Step 4 – Inserting Code for the ComboBoxes

  • Double-click anywhere on the Calendar.

  • A Module to write code will appear.
  • Insert the following code.
Private Sub UserForm_Initialize()
Dim C_Month As Integer

For C_Month = 1 To 12
Me.Cmb_Month.AddItem VBA.Format(VBA.DateSerial(2020, C_Month, 1), "MMMM")
Next C_Month
Me.Cmb_Month.Value = VBA.Format(VBA.Date, "MMMM")

For C_Month = VBA.Year(Date) - 20 To VBA.Year(Date) + 20
Me.Cmb_Year.AddItem C_Month
Next C_Month
Me.Cmb_Year.Value = VBA.Format(VBA.Date, "YYYY")

End Sub

Inserting Codes to Create Excel VBA Calendar

  • Save the code.
  • Return to the Calendar, and select the ComandBoxes while holding the Ctrl key.
  • Right-click and select Properties.
  • Select 20 for ListRows.
  • This will display all the months at once and we do not need to scroll down to see all the months.

Adjusting ComboBoxes List Rows to Create Excel VBA Calendar

  • Run the code.

  • The current month will appear.
  • You can click on the drop-down arrow and select any other month.

  • You can click on the drop-down arrow for Year and select a value.


Step 5 – Inserting Images

  • Select Image from the ToolBox.
  • Draw the image box.

Inserting Image to Create Excel VBA Calendar

  • Right-click on the image box and select Properties.

  • Select 0-fmBorderStyleNone as the BorderStyle.
  • Select a Picture.

  • We have three pictures in a specific folder. You can use any pictures you want.
Note: Your pictures must be in the .jpg format. Also, you must resize your pictures or they default to a big size which will be inconvenient.

Keeping Images in a Folder to Create Excel VBA Calendar

  • In the Picture box, click on the three dots to insert an image.

  • We selected the Back Ground image and clicked Open.

  • You can see the Picture in the Image box.

Inserting Back Ground Image to Create an Excel VBA Calendar

  • In the Properties box, select True for AutoSize.

  • Add the Right arrow and Left arrow pictures.
  • Click on the Left arrow.

Employing Left and Right Arrows to Create an Excel VBA Calendar

  • This will open a Properties box.
  • Set the Name as Previous_Month.
  • Set the ControlTipText as Previous_Month.

Providing Names for Left Arrow to Create an Excel VBA Calendar

  • Click on the Right arrow.

  • This will open a Properties box.
  • Set the Name as Next_Month.
  • Set the ControlTipText as Next_Month.

Providing Names for Right Arrow to Create an Excel VBA Calendar


Step 6 – Adding Month and Day Names

  • Copy the Month label.

  • Paste the Month into the calendar.
  • Right-click on the Month and select Properties.

  • Set the Name as Month_Name.
  • Choose a White ForeColor.
  • Click on the Font box.

Inserting Month Name Box to Create an Excel VBA Calendar

  • Select Bold as the Font Style, choose Size 9, and click OK.

  • Select Center for TextAlign.

  • Place the Month between the Left and Right arrow.
  • From the Toolbox, select an Image. We placed the Image like the following picture.

  • Copy the Month label.

  • Paste the Month in the image box and edit the name as Sun to indicate Sunday.
  • Right-click on Sun and select Properties.

Adding Day Name to Create an Excel VBA Calendar

  • Select Center for TextAlign.
  • Click on the Font box.

  • Select Bold as the Font Style, choose Size 9, and click OK.

  • We have added other days of the week by repeating the process.

Employing All Day Names to Create an Excel VBA Calendar


Step 7 – Adding CommandButtons

  • From the Toolbox, select CommandButton.
  • Draw the CommandButton under the days.

Adding Command Button to Create an Excel VBA Calendar

  • Delete the name of the CommandButton.

  • Draw 41 more Command Buttons.
  • These commandbuttons will indicate the dates.
Note: You must insert the command button serially. Otherwise, the calendar will not run properly.


Step 8 – Inserting Codes for CommandButtons

  • Double-click on the empty space in the Excel VBA Calendar.

  • Insert the following code.
Private Sub D_Display()

 Dim D_Initial As Date
 D_Initial = VBA.DateValue("1-" & Me.Cmb_Month.Value _
 & "-" & Me.Cmb_Year.Value)

 Dim D_Final As Integer
 D_Final = VBA.Day(VBA.DateSerial(VBA.Year(D_Initial), _
 VBA.Month(D_Initial) + 1, 1) - 1)

 Dim C_Month As Integer
 Dim C_Date As CommandButton

 For C_Month = 1 To 42
  Set C_Date = Me.Controls("CommandButton" & C_Month)
  C_Date.Caption = ""
 Next C_Month

 For C_Month = 1 To 7
  Set C_Date = Me.Controls("CommandButton" & C_Month)
   If VBA.Weekday(D_Initial) = C_Month Then
 C_Date.Caption = "1"

  Else
    C_Date.Caption = ""
 End If

 Next C_Month

  Dim C_Date1 As CommandButton
  Dim C_Date2 As CommandButton

 For C_Month = 1 To 41
 Set C_Date1 = Me.Controls("CommandButton" & C_Month)
 Set C_Date2 = Me.Controls("CommandButton" & C_Month + 1)

 If C_Date1.Caption <> "" Then
 If D_Final > C_Date1.Caption Then
 C_Date2.Caption = C_Date1.Caption + 1

    End If
 End If
  Next C_Month
End Sub

Writing Codes for Command Buttons to Create an Excel VBA Calendar

  • Run the code.

  • The Calendar is looking better. You can also see the dates in the Command Buttons.

  • The dates are fixed for the month of January and the year 2023.
  • To make the calendar dynamic, insert the following code in the UserBox module.
Private Sub Cmb_Month_Change()
If Me.Cmb_Month.Value <> "" And Me.Cmb_Year.Value <> "" Then
  Call D_Display
  Me.Month_Name.Caption = Me.Cmb_Month & "-" & Me.Cmb_Year
 End If

End Sub

Private Sub Cmb_Year_Change()
If Me.Cmb_Month.Value <> "" And Me.Cmb_Year.Value <> "" Then
    Call D_Display
    Me.Month_Name.Caption = Me.Cmb_Month & "-" & Me.Cmb_Year
End If

End Sub

Writing Codes for Combo Boxes to Create an Excel VBA Calendar

  • Run the code.
  • Change the month to April.

  • You can see the calendar for April 2023. You can also change the Year.


Step 9 – Using Code for the Left and Right Arrows

  • Double-click on the Right arrow.

Inserting Code for Right Arrow to Create an Excel VBA Calendar

  • Insert the following code.
Private Sub Next_Month_Click()
  On Error Resume Next
 If Me.Cmb_Month.ListIndex = 11 Then
    Me.Cmb_Month.ListIndex = 0
   Me.Cmb_Year.Value = Me.Cmb_Year.Value + 1
Else
   Me.Cmb_Month.ListIndex = Me.Cmb_Month.ListIndex + 1
 End If
End Sub

  • Double-click on the Left arrow.

  • Insert the following code.
Private Sub Previous_Month_Click()
  On Error Resume Next
  If Me.Cmb_Month.ListIndex = 0 Then
    Me.Cmb_Month.ListIndex = 11
  Me.Cmb_Year.Value = Me.Cmb_Year.Value - 1
 Else
  Me.Cmb_Month.ListIndex = Me.Cmb_Month.ListIndex - 1
  End If
End Sub

  • Run the code.
  • Click on the Left arrow.

  • The previous month will be shown.

  • Click on the Right arrow.

  • The next month will be shown.


Step 10 – Adding Colors

  • Add the following code at the end of the previous code.
Sub D_Col()

Dim C_Month As Integer
Dim C_Date As MSForms.CommandButton
For C_Month = 1 To 42
Set C_Date = Me.Controls("CommandButton" & C_Month)
C_Date.BackColor = VBA.RGB(217, 210, 233)
C_Date.Enabled = True
 Next C_Month
End Sub

Adding Code for Color to Create an Excel VBA Calendar

  • Add Call D_Col to the code that is under the D_Display sub.

  • Here’s the resulting code.
Private Sub Cmb_Month_Change()
If Me.Cmb_Month.Value <> "" And Me.Cmb_Year.Value <> "" Then
Call D_Display
Me.Month_Name.Caption = Me.Cmb_Month & "-" & Me.Cmb_Year
End If
End Sub
Private Sub Cmb_Year_Change()
If Me.Cmb_Month.Value <> "" And Me.Cmb_Year.Value <> "" Then
Call D_Display
Me.Month_Name.Caption = Me.Cmb_Month & "-" & Me.Cmb_Year
End If
End Sub

Private Sub Next_Month_Click()
On Error Resume Next
If Me.Cmb_Month.ListIndex = 11 Then
Me.Cmb_Month.ListIndex = 0
Me.Cmb_Year.Value = Me.Cmb_Year.Value + 1
Else
Me.Cmb_Month.ListIndex = Me.Cmb_Month.ListIndex + 1
End If
End Sub

Private Sub Previous_Month_Click()
On Error Resume Next
If Me.Cmb_Month.ListIndex = 0 Then
Me.Cmb_Month.ListIndex = 11
Me.Cmb_Year.Value = Me.Cmb_Year.Value - 1
Else
Me.Cmb_Month.ListIndex = Me.Cmb_Month.ListIndex - 1
End If
End Sub

Private Sub UserForm_Initialize()
Dim C_Month As Integer
For C_Month = 1 To 12
Me.Cmb_Month.AddItem VBA.Format(VBA.DateSerial(2020, C_Month, 1), "MMMM")
Next C_Month
Me.Cmb_Month.Value = VBA.Format(VBA.Date, "MMMM")
For C_Month = VBA.Year(Date) - 20 To VBA.Year(Date) + 20
Me.Cmb_Year.AddItem C_Month
Next C_Month
Me.Cmb_Year.Value = VBA.Format(VBA.Date, "YYYY")
Call D_Display
End Sub

Private Sub D_Display()
Dim D_Initial As Date
D_Initial = VBA.DateValue("1-" & Me.Cmb_Month.Value _
& "-" & Me.Cmb_Year.Value)
Dim D_Final As Integer
D_Final = VBA.Day(VBA.DateSerial(VBA.Year(D_Initial), _
VBA.Month(D_Initial) + 1, 1) - 1)
Dim C_Month As Integer
Dim C_Date As CommandButton
For C_Month = 1 To 42
Set C_Date = Me.Controls("CommandButton" & C_Month)
C_Date.Caption = ""
Next C_Month
For C_Month = 1 To 7
Set C_Date = Me.Controls("CommandButton" & C_Month)
If VBA.Weekday(D_Initial) = C_Month Then
C_Date.Caption = "1"
Else
C_Date.Caption = ""
End If
Next C_Month
Dim C_Date1 As CommandButton
Dim C_Date2 As CommandButton
For C_Month = 1 To 41
Set C_Date1 = Me.Controls("CommandButton" & C_Month)
Set C_Date2 = Me.Controls("CommandButton" & C_Month + 1)
If C_Date1.Caption <> "" Then
If D_Final > C_Date1.Caption Then
C_Date2.Caption = C_Date1.Caption + 1
End If
End If
Next C_Month
Call D_Col
End Sub

Sub D_Col()
Dim C_Month As Integer
Dim C_Date As MSForms.CommandButton
For C_Month = 1 To 42
Set C_Date = Me.Controls("CommandButton" & C_Month)
C_Date.BackColor = VBA.RGB(217, 210, 233)
C_Date.Enabled = True
Next C_Month
End Sub
  • Run the code.


Practice Section

You can download the above Excel file and use the template to test it out.


Download the Template


Related Articles

Get FREE Advanced Excel Exercises with Solutions!

Tags:

Afia Kona
Afia Kona

Afia Aziz Kona, a graduate of Civil Engineering from Khulna University of Engineering & Technology, Bangladesh, serves as a technical content creator in the ExcelDemy project. Possessing a passion for innovation and critical thinking, she actively embraces challenges. Beyond her engineering background, Afia exhibits a keen interest in Excel, having authored numerous articles on Excel & VBA-related issues to simplify the experience for users facing obstacles in Excel. Apart from creating Excel tutorials, she is also... Read Full Bio

8 Comments
  1. I got to the point where the dates are fixed in step 8
    I added the two codes and when I selected run I got an error message
    “Compile errpr:
    Ambiguous name detected: Cmb_Month_Change”

    Can you please advise?
    Kind Regards
    Derek Tierney

    • Dear DEREK TIERNEY,
      Thank you for your comment.
      After typing the code for the Command Button in Step 8, you have to call the private sub Call D_Display in the previous code. This will solve the problem. If you still face the issue, please attach the Excel file in the comment section.

      Best,
      Afia Aziz Kona

  2. Very Nice! I used commandbuttons in lieu of inserting images, renamed them as “Previous_Month” and “Next_Month” respectfully. This works really nice! I love that I can mod all of the content to my liking. Now I have a question. I would like to add a few more items to this.
    1. I would like to add a Text Box that will load with today’s date, I believe that should be simple enough through the initialize sub.
    2. I would like to click on the commandbutton for a date and it will fill in that date into the text box mentioned above.
    3. I would like for the commandbutton with the current date to be a different color than the rest. (I am changing the weekend colors so when the current date changes, these need to go back to the original color).

    • Thanks a lot, MATT, for your comment. If you want to insert a Text Box that will display the current date, and highlight the current date, follow the steps below:
      First, draw a Textbox, rename it as “TextBox1”.
      You can also insert a Label to show what the Textbox will contain.
      Next, go to the D_Col subroutine and modify it in this way:

      Sub D_Col()
      Dim C_Month As Integer
      Dim C_Date As MSForms.CommandButton
      For C_Month = 1 To 42
          Set C_Date = Me.Controls("CommandButton" & C_Month)
          C_Date.BackColor = VBA.RGB(217, 210, 233)
          C_Date.Enabled = True
      Next C_Month
      'Initializing the Textbox with current date
      Me.TextBox1.Value = Date
      'Highlighting the current date
          For i = 1 To 41
              Dim cb As CommandButton
              Set cb = Me.Controls("CommandButton" & i)
              If cb.Caption = Day(Date) And Me.Cmb_Month.Value = VBA.Format(VBA.Date, "MMMM") And Me.Cmb_Year.Value = VBA.Format(VBA.Date, "YYYY") Then
              cb.BackColor = vbYellow 'Making it yellow
              End If
          Next i
      End Sub

      As whenever any change happens in the userform, this D_Col subroutine is called, so it will always highlight the current date and populate the TextBox1 with the current date.

      If you want to populate the TextBox1 with the date of the clicked commandbutton, you need to write event driven subs CommandButton_Click for each of the CommandButtons from CommandButton1 to CommandButton42. Below, I am only giving the CommandButton1_Click sub.

      Private Sub CommandButton1_Click()
       Dim btn As CommandButton
          Set btn = Me.ActiveControl
          Date_text = btn.Caption & "-" & Cmb_Month.Text & "-" & Cmb_Year.Text
          Me.TextBox1.Text = Date_text
      End Sub

      You just need to replace the CommandButton1 with CommandButton2, CommandButton3 and so on for the rest of the CommandButtons.

      Now, if you run the UserForm, you will get your desired features.
      UserForm with desired features

      Here, I am attaching the Excel File with modified UserForm and VBA Codes :VBA UserForm Calender.xlsm

  3. Thank you so much! It is easy to use and connect to other forms and codes. It is easy to tailor to the specific needs for a calendar. I as the developer have total control over this calendar. I might have been able to develop one myself but it would have taken me a long time and it might not have been so user-friendly.

  4. This is fantastic.

    Ive used the following to click a cell in my worksheet to open the calendar –

    Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    If (Target.Count = 1) Then
    If Not Intersect(Target, Range(“D75:D80”)) Is Nothing Then Calendar.Show
    End If
    End Sub

    From Matt’s question above, how do I then add the SELECTED DATE into a cell I clicked to open the calendar in the excel sheet?
    Thanks Rob.

    • Reply Lutfor Rahman Shimanto
      Lutfor Rahman Shimanto Mar 24, 2024 at 1:56 PM

      Hello Rob Devine

      Thanks a lot for your kind words. Your appreciation means a lot to us.

      You wanted to display the UserForm Calender when you select a single cell from the D75:D80 range and insert the date into the selected cell. Thanks once again for sharing such a practical requirement.

      SOLUTION Overview:

      To do so, follow these steps:

      1. Double-click on the UserForm named Calender.
      2. Paste the following code in the module and save it:
        Private Sub CommandButton1_Click()
            
            Dim btn As CommandButton
            Set btn = Me.ActiveControl
            
            Selection.Value = btn.Caption & "-" & Cmb_Month.Text & "-" & Cmb_Year.Text
        
        End Sub
        
        Private Sub CommandButton2_Click()
            
            Dim btn As CommandButton
            Set btn = Me.ActiveControl
            
            Selection.Value = btn.Caption & "-" & Cmb_Month.Text & "-" & Cmb_Year.Text
        
        End Sub
        
        Private Sub CommandButton3_Click()
            
            Dim btn As CommandButton
            Set btn = Me.ActiveControl
            
            Selection.Value = btn.Caption & "-" & Cmb_Month.Text & "-" & Cmb_Year.Text
        
        End Sub
        
        Private Sub CommandButton4_Click()
            
            Dim btn As CommandButton
            Set btn = Me.ActiveControl
            
            Selection.Value = btn.Caption & "-" & Cmb_Month.Text & "-" & Cmb_Year.Text
        
        End Sub
        
        Private Sub CommandButton5_Click()
            
            Dim btn As CommandButton
            Set btn = Me.ActiveControl
            
            Selection.Value = btn.Caption & "-" & Cmb_Month.Text & "-" & Cmb_Year.Text
        
        End Sub
        
        Private Sub CommandButton6_Click()
            
            Dim btn As CommandButton
            Set btn = Me.ActiveControl
            
            Selection.Value = btn.Caption & "-" & Cmb_Month.Text & "-" & Cmb_Year.Text
        
        End Sub
        
        Private Sub CommandButton7_Click()
            
            Dim btn As CommandButton
            Set btn = Me.ActiveControl
            
            Selection.Value = btn.Caption & "-" & Cmb_Month.Text & "-" & Cmb_Year.Text
        
        End Sub
        
        Private Sub CommandButton8_Click()
            
            Dim btn As CommandButton
            Set btn = Me.ActiveControl
            
            Selection.Value = btn.Caption & "-" & Cmb_Month.Text & "-" & Cmb_Year.Text
        
        End Sub
        
        Private Sub CommandButton9_Click()
            
            Dim btn As CommandButton
            Set btn = Me.ActiveControl
            
            Selection.Value = btn.Caption & "-" & Cmb_Month.Text & "-" & Cmb_Year.Text
        
        End Sub
        
        Private Sub CommandButton10_Click()
            
            Dim btn As CommandButton
            Set btn = Me.ActiveControl
            
            Selection.Value = btn.Caption & "-" & Cmb_Month.Text & "-" & Cmb_Year.Text
        
        End Sub
        
        Private Sub CommandButton11_Click()
            
            Dim btn As CommandButton
            Set btn = Me.ActiveControl
            
            Selection.Value = btn.Caption & "-" & Cmb_Month.Text & "-" & Cmb_Year.Text
        
        End Sub
        
        Private Sub CommandButton12_Click()
            
            Dim btn As CommandButton
            Set btn = Me.ActiveControl
            
            Selection.Value = btn.Caption & "-" & Cmb_Month.Text & "-" & Cmb_Year.Text
        
        End Sub
        
        Private Sub CommandButton13_Click()
            
            Dim btn As CommandButton
            Set btn = Me.ActiveControl
            
            Selection.Value = btn.Caption & "-" & Cmb_Month.Text & "-" & Cmb_Year.Text
        
        End Sub
        
        Private Sub CommandButton14_Click()
            
            Dim btn As CommandButton
            Set btn = Me.ActiveControl
            
            Selection.Value = btn.Caption & "-" & Cmb_Month.Text & "-" & Cmb_Year.Text
        
        End Sub
        
        Private Sub CommandButton15_Click()
            
            Dim btn As CommandButton
            Set btn = Me.ActiveControl
            
            Selection.Value = btn.Caption & "-" & Cmb_Month.Text & "-" & Cmb_Year.Text
        
        End Sub
        
        Private Sub CommandButton16_Click()
            
            Dim btn As CommandButton
            Set btn = Me.ActiveControl
            
            Selection.Value = btn.Caption & "-" & Cmb_Month.Text & "-" & Cmb_Year.Text
        
        End Sub
        
        Private Sub CommandButton17_Click()
            
            Dim btn As CommandButton
            Set btn = Me.ActiveControl
            
            Selection.Value = btn.Caption & "-" & Cmb_Month.Text & "-" & Cmb_Year.Text
        
        End Sub
        
        
        Private Sub CommandButton18_Click()
            
            Dim btn As CommandButton
            Set btn = Me.ActiveControl
            
            Selection.Value = btn.Caption & "-" & Cmb_Month.Text & "-" & Cmb_Year.Text
        
        End Sub
        
        
        Private Sub CommandButton19_Click()
            
            Dim btn As CommandButton
            Set btn = Me.ActiveControl
            
            Selection.Value = btn.Caption & "-" & Cmb_Month.Text & "-" & Cmb_Year.Text
        
        End Sub
        
        
        Private Sub CommandButton20_Click()
            
            Dim btn As CommandButton
            Set btn = Me.ActiveControl
            
            Selection.Value = btn.Caption & "-" & Cmb_Month.Text & "-" & Cmb_Year.Text
        
        End Sub
        
        
        Private Sub CommandButton21_Click()
            
            Dim btn As CommandButton
            Set btn = Me.ActiveControl
            
            Selection.Value = btn.Caption & "-" & Cmb_Month.Text & "-" & Cmb_Year.Text
        
        End Sub
        
        
        Private Sub CommandButton22_Click()
            
            Dim btn As CommandButton
            Set btn = Me.ActiveControl
            
            Selection.Value = btn.Caption & "-" & Cmb_Month.Text & "-" & Cmb_Year.Text
        
        End Sub
        
        
        Private Sub CommandButton23_Click()
            
            Dim btn As CommandButton
            Set btn = Me.ActiveControl
            
            Selection.Value = btn.Caption & "-" & Cmb_Month.Text & "-" & Cmb_Year.Text
        
        End Sub
        
        
        Private Sub CommandButton24_Click()
            
            Dim btn As CommandButton
            Set btn = Me.ActiveControl
            
            Selection.Value = btn.Caption & "-" & Cmb_Month.Text & "-" & Cmb_Year.Text
        
        End Sub
        
        
        Private Sub CommandButton25_Click()
            
            Dim btn As CommandButton
            Set btn = Me.ActiveControl
            
            Selection.Value = btn.Caption & "-" & Cmb_Month.Text & "-" & Cmb_Year.Text
        
        End Sub
        
        
        Private Sub CommandButton26_Click()
            
            Dim btn As CommandButton
            Set btn = Me.ActiveControl
            
            Selection.Value = btn.Caption & "-" & Cmb_Month.Text & "-" & Cmb_Year.Text
        
        End Sub
        
        Private Sub CommandButton27_Click()
            
            Dim btn As CommandButton
            Set btn = Me.ActiveControl
            
            Selection.Value = btn.Caption & "-" & Cmb_Month.Text & "-" & Cmb_Year.Text
        
        End Sub
        
        Private Sub CommandButton28_Click()
            
            Dim btn As CommandButton
            Set btn = Me.ActiveControl
            
            Selection.Value = btn.Caption & "-" & Cmb_Month.Text & "-" & Cmb_Year.Text
        
        End Sub
        
        Private Sub CommandButton29_Click()
            
            Dim btn As CommandButton
            Set btn = Me.ActiveControl
            
            Selection.Value = btn.Caption & "-" & Cmb_Month.Text & "-" & Cmb_Year.Text
        
        End Sub
        
        
        Private Sub CommandButton30_Click()
            
            Dim btn As CommandButton
            Set btn = Me.ActiveControl
            
            Selection.Value = btn.Caption & "-" & Cmb_Month.Text & "-" & Cmb_Year.Text
        
        End Sub
        
        
        Private Sub CommandButton31_Click()
            
            Dim btn As CommandButton
            Set btn = Me.ActiveControl
            
            Selection.Value = btn.Caption & "-" & Cmb_Month.Text & "-" & Cmb_Year.Text
        
        End Sub
        
        
        Private Sub CommandButton32_Click()
            
            Dim btn As CommandButton
            Set btn = Me.ActiveControl
            
            Selection.Value = btn.Caption & "-" & Cmb_Month.Text & "-" & Cmb_Year.Text
        
        End Sub
        
        
        Private Sub CommandButton33_Click()
            
            Dim btn As CommandButton
            Set btn = Me.ActiveControl
            
            Selection.Value = btn.Caption & "-" & Cmb_Month.Text & "-" & Cmb_Year.Text
        
        End Sub
        
        
        Private Sub CommandButton34_Click()
            
            Dim btn As CommandButton
            Set btn = Me.ActiveControl
            
            Selection.Value = btn.Caption & "-" & Cmb_Month.Text & "-" & Cmb_Year.Text
        
        End Sub
        
        
        Private Sub CommandButton35_Click()
            
            Dim btn As CommandButton
            Set btn = Me.ActiveControl
            
            Selection.Value = btn.Caption & "-" & Cmb_Month.Text & "-" & Cmb_Year.Text
        
        End Sub
        
        
        Private Sub CommandButton36_Click()
            
            Dim btn As CommandButton
            Set btn = Me.ActiveControl
            
            Selection.Value = btn.Caption & "-" & Cmb_Month.Text & "-" & Cmb_Year.Text
        
        End Sub
        
        Private Sub CommandButton37_Click()
            
            Dim btn As CommandButton
            Set btn = Me.ActiveControl
            
            Selection.Value = btn.Caption & "-" & Cmb_Month.Text & "-" & Cmb_Year.Text
        
        End Sub
        
        
        Private Sub CommandButton38_Click()
            
            Dim btn As CommandButton
            Set btn = Me.ActiveControl
            
            Selection.Value = btn.Caption & "-" & Cmb_Month.Text & "-" & Cmb_Year.Text
        
        End Sub
        
        Private Sub CommandButton39_Click()
            
            Dim btn As CommandButton
            Set btn = Me.ActiveControl
            
            Selection.Value = btn.Caption & "-" & Cmb_Month.Text & "-" & Cmb_Year.Text
        
        End Sub
        
        Private Sub CommandButton40_Click()
            
            Dim btn As CommandButton
            Set btn = Me.ActiveControl
            
            Selection.Value = btn.Caption & "-" & Cmb_Month.Text & "-" & Cmb_Year.Text
        
        End Sub
        
        Private Sub CommandButton41_Click()
            
            Dim btn As CommandButton
            Set btn = Me.ActiveControl
            
            Selection.Value = btn.Caption & "-" & Cmb_Month.Text & "-" & Cmb_Year.Text
        
        End Sub
        
        Private Sub CommandButton42_Click()
            
            Dim btn As CommandButton
            Set btn = Me.ActiveControl
            
            Selection.Value = btn.Caption & "-" & Cmb_Month.Text & "-" & Cmb_Year.Text
        
        End Sub

      3. Return to the sheet and make changes.

      I have attached the solution workbook for better understanding. I hope the solution will fulfil your needs; good luck.

      DOWNLOAD SOLUTION WORKBOOK

      Regards
      Lutfor Rahman Shimanto
      Excel & VBA Developer
      ExcelDemy

Leave a reply

Advanced Excel Exercises with Solutions PDF

 

 

ExcelDemy
Logo