=IIf(DatePart("m",[txt_D_PAID])>3,DatePart("yyyy",[txt_D_PAID]) & "/" & Right(DatePart("yyyy",[txt_D_PAID])+1,2),DatePart("yyyy",[txt_D_PAID]-1) & "/" & Right(DatePart("yyyy",[txt_D_PAID]),2))
The above works in so far that it returns eg. 1994/95 if the month is greater than 3, however when the...