Scenario 3: Menu Creation Using VBA 
The user requires guidance on the process to close the financial month end. A workbook is created to provide a menu-like instruction. This workbook uses VBA macro assigned to buttons. The workbook also contains text to instruct the user on how to use the menu, for example click the button to invoke task.
Initiate a monthly close
Private Sub CommandButton1_Click()
Application.Run ("MNU_eTOOLS_EXPAND”)
Application.Run ("MNU_ eData_RUNPACKAGE")
End Sub
Enter the monthly financial data:
Private Sub CommandButton2_Click()
Application.Run ("MNU_eTOOLS_EXPAND”)
Application.Run ("MNU_ eSUBMIT_OPENSTANDARD")
End Sub
Enter the adjustments:
Private Sub CommandButton3_Click()
Application.Run ("MNU_eTOOLS_EXPAND”)
Application.Run ("MNU_eTOOLS_JOURNAL“)
End Sub
Enter the allocations:
Private Sub CommandButton4_Click()
Application.Run ("MNU_eTOOLS_EXPAND")
Application.Run ("MNU_ eData_RUNPACKAGE")
End Sub
Review the consolidation:
Private Sub CommandButton5_Click()
Application.Run ("MNU_eTOOLS_EXPAND”)
Application.Run ("MNU_ eANALYZE _OPENSTANDARD")
Application.Run ("MNU_eSUBMIT_MODIFY")
End Sub
Update the monthly forecast:
Private Sub CommandButton6_Click()
Application.Run ("MNU_eTOOLS_EXPAND”)
Sheets("Units").Select
Sheets("Dollars").Select
Application.Run ("MNU_eSUBMIT_SUBMIT")
End Sub