April 7, 201015 yr Is there a date function that will automatically calculate a fiscal year? I have a report that details quotes and their values. i want to sort the quotes by fiscal year (09/10 and then 10/11) and then sub sort by Month. I have found the MonthName calculation, but cant find anything specific for fiscal year. My searches through fmforums have found only complex fiscal year calculations. is there something simpler? Edited April 7, 201015 yr by Guest
April 7, 201015 yr Try: Year ( date ) - ( Month ( date ) < 7 ) or, if you prefer: Let ( y = Year ( date ) - ( Month ( date ) < 7 ) ; y & "/" & y + 1 ) The result is Number for the first one, Text for the other.
April 8, 201015 yr Author thanks so much. i tried the first one and it has solved my problem perfectly.
Create an account or sign in to comment