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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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

Top Solution Authors