There is one funky way to get the last date of a Month, this will make use of the DateSerial function. Something along the lines of,
SELECT
theListOfAllFieldsYouWant
FROM
yourTableName
WHERE
EndDate = DateSerial(Year(EndDate), Month(EndDate) + 1,0)
OR
ClosingDate =...