I currently enter a date into a text box in a form in the following format:
200401 = Jan2004
From this I would like to work out a future date which will always be the end of February or the end of August depending on which month I am reporting on.
I have done this for August by using the following:
=IIf(Right([Current],2) Between "03" And "08","31/08/" & Left([Current],4), OTHERWISE PUT THE END OF FEBRUARY )
But as February is a moving month instead of hardcoding in the last day of the month, how to I get it to automatically put in the last day of February
I hope this makes sense as it is very hard to explain
Regards
Carly
200401 = Jan2004
From this I would like to work out a future date which will always be the end of February or the end of August depending on which month I am reporting on.
I have done this for August by using the following:
=IIf(Right([Current],2) Between "03" And "08","31/08/" & Left([Current],4), OTHERWISE PUT THE END OF FEBRUARY )
But as February is a moving month instead of hardcoding in the last day of the month, how to I get it to automatically put in the last day of February
I hope this makes sense as it is very hard to explain
Regards
Carly