The beginning of the Fiscal Year varies from company to company. You'll have to use a formula to calc the first day of the current fiscal year, then use the record select formula to select all records with dates >= your formula:
formula: FYStartDate
If Month(Today) >= 10 then Date(Year(Today),10,01) else
Date(Year(Today) - 1),10,01)
MrBill