SynapseVampire has an faq on creating a periods table: faq767-4532 which might be helpful. If you cannot create a periods table, then you could use a manual crosstab where you create formulas of the following form:
//{@previousmo}:
if {table.claimreceiveddate} <= dateserial(year(currentdate),month(currentdate),01)-1 and
{table.claimentereddate} > dateserial(year(currentdate),month(currentdate),01)-1 then {table.amt}
//{@twomonthsago}:
if {table.claimreceiveddate} <= dateserial(year(currentdate),month(currentdate)-1,01)-1 and
{table.claimentereddate} > dateserial(year(currentdate),month(currentdate)-1,01)-1 then {table.amt}
It wasn't clear exactly what you intended by "month date"--the above formulas reference the last day of the month.
You would make as many formulas as necessary, place them in the detail section, right click on each and insert summaries, and then suppress the detail section. If you had planned to use a row field in your crosstab, then insert a group on that field, and when inserting summaries, specify that you want summaries for all groups.
-LB