emncwundy Posted April 7, 2010 Posted April 7, 2010 (edited) 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, 2010 by Guest
comment Posted April 7, 2010 Posted April 7, 2010 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.
emncwundy Posted April 8, 2010 Author Posted April 8, 2010 thanks so much. i tried the first one and it has solved my problem perfectly.
Recommended Posts
This topic is 5402 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now