Results 1 to 4 of 4

Thread: Help with Application.Worksheet Function

  1. #1
    Join Date
    Dec 2008
    Posts
    137

    Help with Application.Worksheet Function

    Hi friends,

    I am facing an issue with Application.WorksheetFunction.WorkDay function.When i am trying to use the same code in Excel 2000 i am not able to use the soem functions in it.

    Following is the code

    Code:
    Dim holidayDictionary As Object
    
    Sub LoadHolidays()
        If (holidayDictionary Is Nothing) Then
            Set holidayDictionary = CreateObject("Scripting.Dictionary")
            holidayDictionary.Add #7/4/2007#, Null
            'more holidays can be entered here
        End If
    End Sub
    
    Function ISHOLIDAY(d As Date)
        LoadHolidays
        ISHOLIDAY = holidayDictionary.Exists(d)
    End Function
    
    Function ISWORKDAY(d As Date)
    
        Dim weekday As Integer
        weekday = DatePart("w", d, vbUseSystemDayOfWeek, vbUseSystem)
    
        If ((weekday = vbSaturday) Or (weekday = vbSunday)) Then
            ISWORKDAY = False
        Else
            ISWORKDAY = Not ISHOLIDAY(d)
        End If
    End Function
    
    Function NEXTTRADEDAY(d As Date, numOfDays As Integer) As Double
        'Set holidayDictionary = Nothing
        LoadHolidays
        NEXTTRADEDAY = Application.WorksheetFunction.WorkDay(d, numOfDays, holidayDictionary.Keys)
    End Function

  2. #2
    Join Date
    Dec 2008
    Posts
    128

    Re: Help with Application.Worksheet Function

    Sure i will help you out with this try to make a reference to atpvbaen.xls


    Intel Dual core 2.66 Ghz
    915 MSI Motherboard with Intel chipset
    512 mb RAM
    80gb HDD

  3. #3
    Join Date
    Dec 2008
    Posts
    137

    Re: Help with Application.Worksheet Function

    I try to made a reference to atpvbaen.xls after that what i need to do

  4. #4
    Join Date
    Dec 2008
    Posts
    128

    Re: Help with Application.Worksheet Function

    I forget to tell you, now remove:

    Application.WorksheetFunction.

    before Wrkday.


    Intel Dual core 2.66 Ghz
    915 MSI Motherboard with Intel chipset
    512 mb RAM
    80gb HDD

Similar Threads

  1. Replies: 8
    Last Post: 04-12-2011, 11:24 AM
  2. WiMPlay 2.5.0 application not able to function
    By Appaji in forum Windows Software
    Replies: 5
    Last Post: 28-03-2010, 05:30 AM
  3. KLAVAR! 0.7 application is not able to function
    By Aashirya in forum Windows Software
    Replies: 6
    Last Post: 23-03-2010, 04:42 PM
  4. Fast-Help 6.0.0.0 application not able to function
    By Kaufman in forum Windows Software
    Replies: 5
    Last Post: 20-03-2010, 05:59 AM
  5. AsideBar 4.1.4 application not able to function
    By Ransom in forum Windows Software
    Replies: 5
    Last Post: 16-03-2010, 03:33 AM

Tags for this Thread

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
  •  
Page generated in 1,713,987,292.02142 seconds with 17 queries