Data provider types: Financial Management (ad hoc only)
HypCalculateContribution() calls the Calculate Contribution.
HypCalculateContribution (vtSheetName, vtRange)
By Val vtRange As Variant
vtSheetName: The name of worksheet on which to run the function. If vtSheetName is Null or Empty, the active worksheet is used.
vtRange: The range that contains the data to be used. If Empty or Null, then the selected range in the worksheet is used.
Returns 0 if successful; otherwise, returns the corresponding error code.
Declare Function HypCalculateContribution Lib "HsAddin" (ByVal vtSheetName As Variant, ByVal vtRange As Variant) As Long Sub Example_HypCalculateContribution() sts = HypCalculateContribution (Empty, Empty) End Sub