VBA Command to create new worksheets with dates as worksheets name based on certain conditions

Volrin

New Member
Joined
Feb 28, 2024
Messages
5
Office Version
  1. 365
Platform
  1. Windows
I want to create a Marco that will look at dates in a range, and create a new worksheet for every day for the month. The cells of which the dates get pulled will change value depending on user input elsewhere I've already completed. I have the following figure code working, but I want to set a criteria where it only does it by month. So Ideally, marco runs, it's going to create new sheets for each day of the work week for one month. Below is my attempt with the underline portion is me trying to figure out what I need to do.

Sub AddSheets()
Dim xRg As Excel.Range
Dim wSh As Excel.Worksheet
Dim wBk As Excel.Workbook
Set wSh = Worksheets("Current year")
Set wBk = ActiveWorkbook
Application.ScreenUpdating = False
For Each xRg In wSh.Range("B5:F57")
'For Each xRg>= 1 / 1 / ("A1") And xRg.Value <= 1 / 31 / ("A1")= In wSh.Range("B5:F57")
If xRg.Value >= 1 / 1 / ("A1") And xRg.Value <= 1 / 31 / ("A1") Then

With wBk
'If xRg.Value >= 1 / 1 / ("A1") And xRg.Value <= 1 / 31 / ("A1") Then
.Sheets.Add after:=.Sheets(.Sheets.Count)

On Error Resume Next
ActiveSheet.Name = xRg.Text
If Err.Number = 1004 Then
Debug.Print xRg.Value & " already used as a sheet name"
End If
On Error GoTo 0



End With
Next xRg
Application.ScreenUpdating = True
End Sub


The below is the sheet where it's running on. I figure it all out except creating the criteria to only do it with dates of the month of my choice.

1709152465038.png
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
Never mind, I found a simpler solution to what I wanted.
 
Upvote 0

Forum statistics

Threads
1,215,068
Messages
6,122,950
Members
449,095
Latest member
nmaske

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