Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Hi All,
PFB a measure.
Measure = CALCULATE (
Solved! Go to Solution.
Not Excatly according to the need.
Only returning value for current year i.e 2019 , returns a numeric value.
I tried using SAMEPERIODLASTYEAR and that seems to work fine.
Thanks ,
@Anonymous ,
The date value in Year column is month, not year, right? To be general, you may also try measure below:
Measure = CALCULATE ( COUNTROWS ( 'TableName' ), FILTER ( 'TableName', 'TableName'[Column Name x ] = "Yes" ), DATEADD ( 'TableName'[Year], -12, MONTH ) )
Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous Try creating a measure like this:
CALCULATE(DISTINCTCOUNT(<UNIQUE ROW IDENTIFIER>), FILTER('TableName', 'TableName'[Column Name x ] = "Yes")), FILTER(TableName, TableName[Date]>=DATEADD(TableName[Date],-1,year)))
Hi,
Thanks for the suggestion , but the measure returns Blank if I select any date in slicer which does not lie in 2019.
It returns data for only values of 2019, wheres I have data for last 10 years
@Anonymousjust to make sure my formula also didnt work?
Not Excatly according to the need.
Only returning value for current year i.e 2019 , returns a numeric value.
I tried using SAMEPERIODLASTYEAR and that seems to work fine.
Thanks ,
@Anonymous ,
Have you solved your issue by now? If you have, could you please help mark the correct answer to finish the thread? Your contribution will be much appreciated.
Regards,
Jimmy Tao