Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

based on the year quarter previous year quarter value need

Hi all,

 

based on the year quarter previous year quarter value need

 

for example if i select 2020 Q3 i need result of 2019 Q3 value

 

i have used the measure = 

 

PY FY Actual rate netherland = ROUND(
CALCULATE (
SUM ( 'table'[Value] ),
FILTER (
ALL ( 'table' ),
'table'[Year]
= SELECTEDVALUE ( 'table'[Year] ) - 1
&& 'table'[business ] IN DISTINCT ( 'table'[business ] )
)
)/1000,0)
 
it's return correct previous year value but if i select filter it's not change it's shows only full previous year value only
 
 
how to achieve this logic?

 

 

 

 

 

 

2 REPLIES 2
gsherbon
Regular Visitor

If you have a Dates Table, then this can be done with the SAMEPERIODLASTYEAR function.

 

CY FY Actual rate netherland = ROUND( CALCULATE ( SUM ( 'table'[Value] ), )/1000,0)

 

PY FY Actual rate netherland = CALCULATE ( CY FY Actual rate netherland, SAMEPERIODLASTYEAR (DATES(Date))

 

Then whatever date slicer you pick will automatically calculate the same corresponding period.

amitchandak
Super User
Super User

@Anonymous , Based on what I got, please find the examples

 

if you have a date , then with date table and TI

QTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESQTD(('Date'[Date])))
Last year same QTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESQTD(dateadd('Date'[Date],-1,Year)))
Last year same QTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESQTD(ENDOFQUARTER(dateadd('Date'[Date],-1,Year))))

 

if you do not have Date, Based on rank on year Qtr or qtr start date

 

new column

Qtr Rank = RANKX(all('Date'),'Date'[Qtr Start date],,ASC,Dense)

or

Qtr Rank = RANKX(all('Date'),'Date'[year Qtr],,ASC,Dense)

 

measure
This Qtr = CALCULATE(sum('order'[Qty]), FILTER(ALL('Date'),'Date'[Qtr Rank]=max('Date'[Qtr Rank])))
Last Qtr = CALCULATE(sum('order'[Qty]), FILTER(ALL('Date'),'Date'[Qtr Rank]=max('Date'[Qtr Rank])-1))

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors