Hi All,
I need help to exclude Weekends when i run the macro.
Here the Code:
Thanks in advance!!!![]()
ActiveWorkbook.Worksheets.Add.Name = Format(Now() - 1, "mm-dd-yy")
Regards
Elango
Hi All,
I need help to exclude Weekends when i run the macro.
Here the Code:
Thanks in advance!!!![]()
ActiveWorkbook.Worksheets.Add.Name = Format(Now() - 1, "mm-dd-yy")
Regards
Elango
Can you please post the whole script?
Thanks,
Solus
Please remember the following:
1. Use [code] code tags [/code]. It keeps posts clean, easy-to-read, and maintains VBA formatting.Highlight the code in your post and press the # button in the toolbar.2. Show appreciation to those who have helped you by clickingbelow their posts.
3. If you are happy with a solution to your problem, mark the thread as [SOLVED] using the tools at the top.
"Slow is smooth, smooth is fast."
Hi Solus,
Apologize for the delay post.
Hope above script will help..![]()
Sub Voc() Sheets.Add(After:=Sheets(Sheets.Count)).Name = Format(Now() - 1, "mm-dd-yy") With ActiveSheet.QueryTables.Add(Connection:= _ "URL;http://volweb.utk.edu/Schools/bedford/bedford/armstrong.htm", Destination:=Range("$A$1")) .Name = "armstrong" .FieldNames = True .RowNumbers = False .FillAdjacentFormulas = False .PreserveFormatting = True .RefreshOnFileOpen = False .BackgroundQuery = True .RefreshStyle = xlInsertDeleteCells .SavePassword = False .SaveData = True .AdjustColumnWidth = True .RefreshPeriod = 0 .WebSelectionType = xlSpecifiedTables .WebFormatting = xlWebFormattingNone .WebTables = "1" .WebPreFormattedTextToColumns = True .WebConsecutiveDelimitersAsOne = True .WebSingleBlockTextImport = False .WebDisableDateRecognition = False .WebDisableRedirections = False .Refresh BackgroundQuery:=False End With Range("K:AF").ClearContents With Intersect(Range("A:J"), ActiveSheet.UsedRange) .Borders.Weight = xlThin .Borders(xlEdgeBottom).Weight = xlMedium .Borders(xlEdgeLeft).Weight = xlMedium .Borders(xlEdgeRight).Weight = xlMedium .Columns.AutoFit End With Range("A1:J1").Borders.Weight = xlMedium End Sub
Regards
Elango
you can use the function "weekday"
note :![]()
if weekday(now-1) = 1 or weekday(now-1) = 7 then 'your code end if
sunday = 1
monday = 2
...
but you can change these defaults properties by the way
Hi Kiwoop,
Thanks for your code.
But still i am not clear about the code. I tried this code an error was occurred
Elango
Try:
Untested.![]()
Sub Voc If Weekday(Now) = 1 Or Weekday(Now) = 7 Then Exit Sub Else: Sheets.Add(After:=Sheets(Sheets.Count)).Name = Format(Now() - 1, "mm-dd-yy") With ActiveSheet.QueryTables.Add(Connection:= _ "URL;http://volweb.utk.edu/Schools/bedford/bedford/armstrong.htm", Destination:=Range("$A$1")) .Name = "armstrong" .FieldNames = True .RowNumbers = False .FillAdjacentFormulas = False .PreserveFormatting = True .RefreshOnFileOpen = False .BackgroundQuery = True .RefreshStyle = xlInsertDeleteCells .SavePassword = False .SaveData = True .AdjustColumnWidth = True .RefreshPeriod = 0 .WebSelectionType = xlSpecifiedTables .WebFormatting = xlWebFormattingNone .WebTables = "1" .WebPreFormattedTextToColumns = True .WebConsecutiveDelimitersAsOne = True .WebSingleBlockTextImport = False .WebDisableDateRecognition = False .WebDisableRedirections = False .Refresh BackgroundQuery:=False End With Range("K:AF").ClearContents With Intersect(Range("A:J"), ActiveSheet.UsedRange) .Borders.Weight = xlThin .Borders(xlEdgeBottom).Weight = xlMedium .Borders(xlEdgeLeft).Weight = xlMedium .Borders(xlEdgeRight).Weight = xlMedium .Columns.AutoFit End With Range("A1:J1").Borders.Weight = xlMedium End If End sub
Hi Solus,
Thanks for the try...
Macro is not working once i click the command button. I will look for some other alternative codes.
Elango
Actually, you add a sheet with the date as name, and you dont want to add sheets for day which are on weekends is that right ?
The Xero Solus code should work I reckon. Which line do you get the error ?
I found a code to avoid the Weekends.
Thanks
Elango
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks