Hello @Ed_French, Welcome to the MongoDB community forum,
You can use $facet stage to achieve your two stats, for ex:
// First stage: Your match condition at a set date
// { $match: { .. your inputs }
// Last stage: (you can rename the stat name whatever you choose)
{
$facet: [
firstState: [
// { add required pipeline stages }
],
secondState: [
// { add required pipeline stages }
]
]
}