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

Get certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now

Reply
davidacosta
Regular Visitor

Operation Last Year vs Current Year using filters

try to calculate automatically (add or sustract) selecting one month in the filters in one table. Need to compare for example sales for one year vs previous year. I has been try with this formula 

 

Sales difference  =
VAR _Date2 = MAX ( Calendrier[Annee_NUM] )
VAR _Date1 = CALCULATE ( MAX ( Calendrier[Annee_NUM] ), Calendrier[Annee_NUM] < _Date2 )
VAR _HeadCountDate1 =
CALCULATE (
SUM ( FaitVente[Montant] ),
FILTER ( ALL ( Calendrier[Annee_NUM] ), Calendrier[Annee_NUM] = _Date1 )
)
VAR _HeadCountDate2 =
CALCULATE (
SUM ( FaitVente[Montant] ),
FILTER ( ALL ( Calendrier[Annee_NUM] ), Calendrier[Annee_NUM] = _Date2 )
)
RETURN
(_HeadCountDate2 - _HeadCountDate1)
 
but doesn't work  or something like
 
Sales difference = CALCULATE(SUM(LY)) - SAMEPERIODLASTYEAR.
 
any suggestion guys???
 
Thanks
 
David
 
 
3 REPLIES 3
davidacosta
Regular Visitor

Hi guys,
 
I'm making this calculation buy seems not working.  "Argument 9 in SWITCH function is required"
Basically what I'm doing is that, based on the selection of a specific year, the formula selects a specific sumx
 
SWITCH(TRUE(),
[Selected Date] = 2025sumx(FACT_Financial_Sales,FACT_Financial_Sales[Bx Expected QTY FY25]),
[Selected Date] = 2026sumx(FACT_Financial_Sales,FACT_Financial_Sales[Bx Expected QTY FY26]),
 [Selected Date] = 2027, sumx(FACT_Financial_Sales,FACT_Financial_Sales[Bx Expected QTY FY27]),
sumx(FACT_Financial_Sales,FACT_Financial_Sales[Bx Expected QTY FY28]),
 )
 
much appreciated if you guide me.
 
David
Anonymous
Not applicable

Hi @davidacosta ,

If you're looking for the same period in the previous year (whether it's year, month, etc), use  SAMEPERIODLASTYEAR, like this:

 

Sales Difference =
[Sales Amount Total]
-
CALCULATE([Sales Amount Total], SAMEPERIODLASTYEAR('Date'[Date]))
 
The output looks like this:
Previous Year.PNG
Greg_Deckler
Super User
Super User

Can you supply sample data and example of your expected output? Please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Power BI Cookbook Third Edition (Color)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
November Carousel

Fabric Community Update - November 2024

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

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.

Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

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