SharePoint has issues with using keywords "today" and "my". Due to this issue, a few workarounds have to be done to achieve the "Today" functionality. See steps below to create a "rolling" calendar view that shows calendar entries for X number of months out.
FYI, MS has on their site a list of some advanced filter options that I would recommend if your looking to do filtering, check it out, it helped me a lot http://office.microsoft.com/en-us/sharepointtechnology/HA011609471033.aspx
-
Go to your Calendar list and create a column named "Today" and select "single line of text" and do not add it to the default view. This column is merely a placeholder column to achieve "Today" functionality that we can use to filter views
-
Create a new column named "RollingDateFilter", make it a "calculated column"
-
Set the calculated formula to "=AND(MONTH([Start Time])>=MONTH(Today),MONTH([Start Time])<=MONTH(Today)+2)"
- This formula will be used to filter our list
- If you want to see more months out, change 2 in the formula above to the # of months you want to see.
- Be sure to set the data type returned to "Yes/No"
- Be sure to uncheck "add to default view"
- IF you need to change the formula later, you will first have to recreate the "Today" column in step 1, modify the formula, save the formula, then delete the "Today" column.
-
Delete the "Today" column
- This is needed for the "Today" value to be properly parsed in the above formula
- IF the "Today" column is not deleted, the formula using "Today" WILL NOT PROCESS CORRECTLY
-
Create a new View and base it off the "All Events" view
- Select the columns you want to show, just accept the defaults
- Scroll down to the Filter section
- Set the filter to "RollingDateFilter" and set "is equal to" and set "Yes"
- Save the view
- You should now have a view that only shows 2 months out.
-
Go to the homepage that has your un-filtered calendar view
- Edit the webpart
- Switch the view to "2MonthRolling" and save the changes
-
The results below

83b87d17-acea-423e-b5e9-55dc284a92c1|1|5.0