I need help with an expression. I need a expression to calculation the total Tiers that have been assigned a Processor. I know I can use the following query but I have other calculations that don't need the exclusion of the Processor to be part of the overall query. And I thought I could use an expression but I can't get it to work.
Select StatusDetails.[Period], Sum(StatusDetails.[Tiers] AS AssignedTiers
From StatusDetails
Where(((StatusDetails.Processor)Is Not Null))
Group BY StatusDetails.[Period]
HAVING (((StatusDetails.[Period])="2021"
Select StatusDetails.[Period], Sum(StatusDetails.[Tiers] AS AssignedTiers
From StatusDetails
Where(((StatusDetails.Processor)Is Not Null))
Group BY StatusDetails.[Period]
HAVING (((StatusDetails.[Period])="2021"