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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

IF statement issue

I have a data that provides values of sales for 2 years but on quarterly basis, Example: 

YearQuarterSales
2020Q150
2020Q230
2020Q340
2020Q450
2021Q160
2021Q270
2021Q350
2021Q440

 

I need to calculate the sum of sales for the quarters previous to the chosen quarter (giving a slicer for the same) 

Till now I have used the following DAX, but am unsuccessful:

 

var sel = SELECTEDVALUE(Table_name[Quarter])
var SumQ1 = SUMX(FILTER(ALLEXCEPT('Table_name','Table_name'[Year]),'Table_name'[Quarter]="Q1"),'Table_name'[Sales])
var SumQ2 = SUMX(FILTER(ALLEXCEPT('Table_name','Table_name'[Year]),'Table_name'[Quarter]="Q2"),'Table_name'[Sales])
var SumQ3 = SUMX(FILTER(ALLEXCEPT('Table_name','Table_name'[Year]),'Table_name'[Quarter]="Q3"),'Table_name'[Sales])

var val =
IF(sel="Q1",0,
IF(sel="Q2",SumQ1,
IF(sel="Q3",(SumQ2+SumQ1),
IF(sel="Q4",(SumQ2+SumQ1+SumQ3),"NA"
)
)
)
)
 
return val
 
ANY IDEA TO SOLVE THIS?
1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Anonymous , With Time intelligence, create QTD and YTD and table a diff

 

example

QTD= CALCULATE(SUM(Sales[Sales Amount]),DATESQTD(('Date'[Date])))

YTD= CALCULATE(SUM(Sales[Sales Amount]),DATESYTD('Date'[Date],"12/31"))

 

 

Till Last Qtr = [YTD] -[QTD]

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@Anonymous , With Time intelligence, create QTD and YTD and table a diff

 

example

QTD= CALCULATE(SUM(Sales[Sales Amount]),DATESQTD(('Date'[Date])))

YTD= CALCULATE(SUM(Sales[Sales Amount]),DATESYTD('Date'[Date],"12/31"))

 

 

Till Last Qtr = [YTD] -[QTD]

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 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.