L
LA Lawyer
I want to limit the data on a form or report to only the last quarter or the
present quarter of the year. Is there a way to do this?
present quarter of the year. Is there a way to do this?
I want to limit the data on a form or report to only the last quarter or the
present quarter of the year. Is there a way to do this?
= DateSerial(Year(Date()), 10, 1) AND < DateSerial(Year(Date()) + 1, 1, 1)
=dateserial(year(date()),((month(date())-1)\3)*3+1,1) AND < dateserial(year(date()),((month(date())-1)\3)*3+4,1)
LA said:I want to limit the data on a form or report to only the last quarter
or the present quarter of the year. Is there a way to do this?