En access no hay algo para hacerlo directamente yo lo que haría sería crear dentro de access un módulo para crear mi método que me permita hacer el cálculo...
algo así:
Cita: Function DaysInMonth(MyDate)
Dim NextMonth, EndOfMonth
NextMonth = DateAdd("m", 1, MyDate)
EndOfMonth = NextMonth - DatePart("d", NextMonth)
DaysInMonth = DatePart("d",EndOfMonth)
End Function
Y ya en mis queries la mando a llamar.., por ejemplo:
Cita: SELECT DaysInMonth(Date())....
Espero que te sirva..
Salu2