Hello,
I have a textbox that calculates the current fiscal year using the following equation:
=IIf(Month(Date())<4,DateSerial(Year(Date()),3,31),DateSerial(Year(Date()+1),3,31))
My problem is that the fase part of the equation calculates Mar 31 2013, and I need it to be Mar 31 2014. How do I...