How to use Fiscal Year
YEAR((Opportunity."Close Date")) = VALUEOF(NQ_SESSION."CURRENT_YEAR") AND MONTH(Opportunity."Close Date") IN (1, 2, 3, 4, 5, 6, 7, 8, 9)
OR (YEAR((Opportunity."Close Date")) = VALUEOF(NQ_SESSION."CURRENT_YEAR")-1) AND MONTH(Opportunity."Close Date") IN (10, 11, 12)
The "YEAR" function returns the calendar year, and the "CURRENT_YEAR" function returns the fiscal year. This is the only way I could figure out how to force them to match up.