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
scaast
Frequent Visitor

sameperiodlastyear to current date

I'm trying to compare call volume YTD 2017 to call volume from 2016 for the same period (current date).  For example, today (2/16)...I'd like to compare call volume 1/1/2017-2/16/2017 to call volume from 1/1/2016-2/16/2016.  I have a calculated measure for YTD Calls Handled using the following formula:

 

YTD Calls Handled = TOTALYTD(SUM(dimVendorMetrics[Answered Calls]),dimDate[Date])

 

I then used the below formula to calculate 2016 YTD call volume, but it returns a value for the entire year of 2016.  How do I get the formula to calculate 2016 volume through the same date range of YTD 2017?

 

LY YTD Calls Handled = CALCULATE([YTD Calls Handled],SAMEPERIODLASTYEAR(dimDate[Date]))

 

Thank you for your help.  

1 ACCEPTED SOLUTION

Thank you!  I edited the formula to provide previous YTD totals by day and it worked perfectly.

 

=CALCULATE(sum(dimCallMetrics[Answered Calls]),
DATESBETWEEN(dimDate[Date],
FIRSTDATE(DATEADD(dimDate[Date],-365,DAY)),
LASTDATE(DATEADD(dimCallMetrics[Date],-365,DAY))
))

 

 

View solution in original post

2 REPLIES 2
v-shex-msft
Community Support
Community Support

Hi @scaast,

 

You can take a look at below link which has the same requirement:

Total Sales Last Year , Need Help!!

 

Regard,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

Thank you!  I edited the formula to provide previous YTD totals by day and it worked perfectly.

 

=CALCULATE(sum(dimCallMetrics[Answered Calls]),
DATESBETWEEN(dimDate[Date],
FIRSTDATE(DATEADD(dimDate[Date],-365,DAY)),
LASTDATE(DATEADD(dimCallMetrics[Date],-365,DAY))
))

 

 

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.