Create a prompt called pPeriodType with two possible values: 'Select Date Range' or 'Current Month'
Then in your report filter you do something like this:
(
([YourDate] BETWEEN
?pStartDate? AND ?pEndDate?)
AND ?pPeriodType? = 'Select Date Range'
)
OR
(
[YourDate] BETWEEN
<expression evaluating to start of month based on current date>
AND
<expression evaluating to end of month based on current date>
AND ?pPeriodType? = 'Current Month'
)
Now when you pick 'Current Month', it will show current month regardless of the dates you pick. When you pick 'Select Date Range' it will filter based on the selected dates. You just need to work out the expression for start and end dates depending on the current date. What database are you running this on?