last 5 business days from today’s date

sivavuddanti

New Member
Joined
Oct 30, 2017
Messages
7
Hi all,


how to filter last 5 business days from today’s date by using VBA,

Note : already one column is filtered now I have to filter another column with condition last 5 business days from today’s date[FONT=Calibri,CALIBRI][FONT=Calibri,CALIBRI][/FONT][/FONT]
[FONT=Calibri,CALIBRI][FONT=Calibri,CALIBRI][/FONT][/FONT]
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
Hey sivavuddanti,

I have tried the below code on a sample file & it is working ok ... Give it a try & let me know if it works for you too

Code:
Function IsWorkDay(TodayDate As Date) As Boolean

IsWorkDay = True

If Weekday(TodayDate, vbMonday) = 6 Or Weekday(TodayDate, vbMonday) = 7 Then ' change the vbMonday to your first day of the week
    IsWorkDay = False
End If

End Function

Sub Filter()

Dim Arr(1 To 7) As String

For x = LBound(Arr) To UBound(Arr)
    If IsWorkDay(Date - 8 + x) = True Then
        Arr(x) = (Date - 8 + x)
    End If
Next x

ActiveSheet.Range("$A$1:$A$28").AutoFilter Field:=1, Criteria1:=Arr, Operator:=xlFilterValues ' change the sheet & filter range

End Sub
 
Upvote 0

Forum statistics

Threads
1,216,028
Messages
6,128,387
Members
449,445
Latest member
JJFabEngineering

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