I have the following code below
I would like to automatically include text in the message box Reporting period : so that when the month and year is entered for eg Jan 2018 it appears as "Reporting period : Jan 2018"
It would be appreciated if someone could kindly amend my code
Code:
Range("f1").Select
Dim myValue As String
ActiveCell.FormulaR1C1 = InputBox("Enter the Report month and year")
Range("F1").NumberFormat = "MMM-YYYY"
I would like to automatically include text in the message box Reporting period : so that when the month and year is entered for eg Jan 2018 it appears as "Reporting period : Jan 2018"
It would be appreciated if someone could kindly amend my code