Results 1 to 5 of 5

Amalgamating VBA codes into one

Threaded View

  1. #1
    Registered User
    Join Date
    07-04-2008
    Location
    UK
    Posts
    2

    Amalgamating VBA codes into one

    Hi, I'm new to VBA is keen to learn.

    I'm currently using the codes below. Which uses Autfilter and sorts accordingly. I have many criterias which means I will need to create lots of codes for each criteria and run the code.

    Is is possible to amalgamate the code into one and select the criteria from a drop downmenu. (Enter Date and then select criteria eg. 03/07/08 - MEX)

    Or can someone guide me where to start?

    
    Sub ExceptionsMids()
    '
    
    '
    Dim MyDate As Date, StringDate As String
    With Sheets("Daily Sheet")
        StringDate = InputBox("Enter Date")
        If IsDate(StringDate) Then
            MyDate = DateValue(StringDate)
            .Range("D2") = MyDate
        Else
            MsgBox "Invalid Date"
            Exit Sub
        End If
        .Range("$B$4:$D$460").AutoFilter Field:=3, Criteria1:="MEX"
        Sheets("Daily Sheet").Select
    End With
    End Sub
    ----------------------------------
    
    Sub ExceptionsDays()
    '
    '
    Dim MyDate As Date, StringDate As String
    With Sheets("Daily Sheet")
        StringDate = InputBox("Enter Date")
        If IsDate(StringDate) Then
            MyDate = DateValue(StringDate)
            .Range("D2") = MyDate
        Else
            MsgBox "Invalid Date"
            Exit Sub
        End If
        .Range("$B$4:$D$460").AutoFilter Field:=3, Criteria1:="DEX"
        Sheets("Daily Sheet").Select
    End With
    End Sub
    Thanks

    Yogin
    Last edited by yogin2; 07-04-2008 at 04:00 PM.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1