Analysis toolpack functions in VBA

yuryyuryyury

New Member
Joined
Jul 3, 2007
Messages
19
I posted this question here: http://www.excelforum.com/showthread.php?t=606867 But haven't gotten any replies. Maybe someone here can help?

Here is some code that I am using to define some holidays:

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

This last portion, NEXTTRADEDAY, worked on excel 2007, but doesn't work on excel 2002. What method does excel 2002 prefer to call up analysis tool pack functions?[/code]
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type

Forum statistics

Threads
1,215,891
Messages
6,127,606
Members
449,388
Latest member
macca_18380

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