Dossier::FindFinancialYear (Interface: Dossier)
 
Finds the last financial year that contains the given date.
 
SHORT FindFinancialYear (
    DATE dDate
)
 
Parameters
dDate
[in] The date of which you want to know the financial year.
 
Return value
A SHORT containing the financial year if the given date is part of one, otherwise 0.
 
Remarks
If a given date is part of 2 financial years that overlap, the oldest financial year is returned.
 
See Also
CreateDossierContext
 
Samples
 
C++
 
// Find the financial year of the date '04/05/2024'
short sYear = pDossier->FindFinancialYear (COleDateTime (2024, 5, 4, 0, 0, 0).m_dt);

C#
 
// Find the financial year of the date '04/05/2024'
short sYear = oDossier.FindFinancialYear (new DateTime (2024, 5, 4));

VBS
 
' Find the financial year of the date '04/05/2024'
Dim sYear
sYear = oDossier.FindFinancialYear(#5/4/2024#)

VB.NET
 
' Find the financial year of the date '04/05/2024'
Dim sYear As Short
sYear = oDossier.FindFinancialYear(#5/4/2024#)