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

Year-to-Year formula

Hello everybody,

 

I have a slight problem for my Year-to-Year formula. I want to calculate the evolution of sales from 2020 to 2021.

 

It goes as follows:

Conso Net Sales = SUM('DATA (2)'[CONSO NET SALES1])

 

- ConsoNetSales PY (Previous Year) = CALCULATE([Conso Net Sales],CALCULATETABLE(FILTER('DATA (2)','DATA (2)'[CONSO NET SALES1]),DATEADD('Calendar'[Date], -1,YEAR)))
 
- ConsoNetSales YOY (Year-to-Year) =
VAR ValueCurrentPeriod = [Conso Net Sales]
VAR ValuePreviousPeriod = [ConsoNetSales PY]
VAR Result =
IF(NOT ISBLANK(ValueCurrentPeriod) && NOT ISBLANK(ValuePreviousPeriod), ValueCurrentPeriod - ValuePreviousPeriod)
RETURN
Result

 

So everything works. The only problem is that for some of my clients, I don't have data for 2020 and therefore, it does not want to show up in my Waterfall graph.

I know also the solution: I just have to indicate PowerBI that if there is no Data for 2020 (Previous Year), it just has to substract the data of 2021 with 0.

 

But I don't know how to add that in YOY formula...

 

Can you please help me?

 

Thank you very much

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Anonymous , based on what I got

 

ConsoNetSales YOY (Year-to-Year) =
VAR ValueCurrentPeriod = [Conso Net Sales]
VAR ValuePreviousPeriod = [ConsoNetSales PY]+0
VAR Result =
ValueCurrentPeriod - ValuePreviousPeriod
RETURN
Result

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@Anonymous , based on what I got

 

ConsoNetSales YOY (Year-to-Year) =
VAR ValueCurrentPeriod = [Conso Net Sales]
VAR ValuePreviousPeriod = [ConsoNetSales PY]+0
VAR Result =
ValueCurrentPeriod - ValuePreviousPeriod
RETURN
Result

Anonymous
Not applicable

Easy but efficient solution! Thank you very much

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