Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request 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
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.