Adjusting Code for the Month/Quarter

HazatB

New Member
Joined
Sep 19, 2017
Messages
32
Good Morning,

I am finishing up a project that uses quarterly reports and have been re-adjusting my code to be generic and with a drop down box can run macro's based on Quarter 1 to 4. I have one issue left where the report name includes the month of the quarter switching from mar to set to june to dec. Is there a method anyone can suggest to have the name adjust for month?

Code:
     Dim Quarter As String
     Dim Month As String
     Dim SIFile As String
     Dim SIData As String
     Dim SiName As String
     Dim FiName As String
     Dim MyQtr As String
     'Defining the worksheet variables and the worksheet name
     Sheets("Summary").Select
     Range("X4").Select
     Quarter = Range("X4").Value
     MyQtr = Range("AA4").Value
     
     Range("Z4").Select
     Month = Range("Z4").Value
     
     SIFile = Quarter & "_si_allocation_audit__mar__6_decimal_detail_sjmc.txt"
     SiName = Quarter & "_si_allocation_audit__mar__"
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)

Forum statistics

Threads
1,221,310
Messages
6,159,173
Members
451,543
Latest member
cesymcox

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top