Forum Discussion
Impossible to use SAMEPEDIODASLASTYEAR and filter at the same time
- Anonymous3 years ago
Hi DavidM06 ,
Here I add a range [Date]<=_RANGESTART && [Date]>=_RANGEEND in my FILTER. So we don't need to use SAMEPERIODLASTYEAR in our code.
Best Regards,
Rico ZhouIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi DavidM06 ,
Here I suggest you to try ALL() code to create a measure.
LY =
VAR _RANGESTART =
EOMONTH ( MAX ( CRM[DateSignature] ), -13 ) + 1
VAR _RANGEEND =
EOMONTH ( MAX ( CRM[DateSignature] ), -12 )
RETURN
CALCULATE (
SUM ( Haraka[TCV] ),
FILTER (
ALL ( CRM ),
CRM[DateSignature] >= _RANGESTART
&& CRM[DateSignature] <= _RANGEEND
)
)
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- DavidM063 years agoRegular Visitor
thanks, but where is the SAMEPERIODLASTYEAR parameter ?
- Anonymous3 years agoNot applicable
Hi DavidM06 ,
Here I add a range [Date]<=_RANGESTART && [Date]>=_RANGEEND in my FILTER. So we don't need to use SAMEPERIODLASTYEAR in our code.
Best Regards,
Rico ZhouIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.