Forum Discussion
How to Calculate total rows for previous year
- Anonymous3 years ago
Hi m_roussakis ,
I have created a simple sample,please refer to it to see if it helps you.'
Create a measure.
Measure = var _1=YEAR(TODAY())-1 return CALCULATE(COUNTROWS('Table'),FILTER(ALL('Table'),YEAR('Table'[date])=_1))Or a column.
Column = var _1=YEAR(TODAY())-1 return CALCULATE(COUNTROWS('Table'),FILTER(('Table'),YEAR('Table'[date])=_1))If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .
Best Regards
Community Support Team _ Polly
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi m_roussakis ,
I have created a simple sample,please refer to it to see if it helps you.'
Create a measure.
Measure = var _1=YEAR(TODAY())-1
return
CALCULATE(COUNTROWS('Table'),FILTER(ALL('Table'),YEAR('Table'[date])=_1))
Or a column.
Column = var _1=YEAR(TODAY())-1
return
CALCULATE(COUNTROWS('Table'),FILTER(('Table'),YEAR('Table'[date])=_1))
If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .
Best Regards
Community Support Team _ Polly
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
thanks that worked. If I want to see total YTD would it be: