Hi @Eric_Falsken - I would create another field to capture totals within the last 60 days:
the “last 60” field is a formula:
IF(DATETIME_DIFF(TODAY(), date, 'days') > 60, 0, {line item total})
Now you can rollup line item total for lifetime sales and “last 60” for sales within the last 60 days
JB