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

Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote 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
Community Champion
Community Champion

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!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

Vote for your favorite vizzies from the Power BI World Championship submissions!

Sticker Challenge 2026 Carousel

Join our Community Sticker Challenge 2026

If you love stickers, then you will definitely want to check out our Community Sticker Challenge!

January Power BI Update Carousel

Power BI Monthly Update - January 2026

Check out the January 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.