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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
ribaldo
Frequent Visitor

Calculate quarter as difference between YTD months

Hi all.

I've data stored in my database as YTD values, and YTD data are not a sum of months.

I'm looking for a way to calculate quaters not as an aggregation of months but as a difference between YTD values of the last month of the quarter.

Fo example:

     Expeted Result
YearQuarterMonthSales YTD AmtSales Amt 
2021 January1010 
  February2313 
  March3412 
 Q1  3534
  April4711 
  May6014 
  June7313 
 Q2  3839

 

Any ideas?

 

2 REPLIES 2
ribaldo
Frequent Visitor

@amitchandak , I've some trouble implementing your solution. I'm using tabular with compatibility level 1400, and don't have isinscope function. I tried hasonevalue, but without success.

amitchandak
Super User
Super User

@ribaldo , You need a measure like this

 

if(isinscope(Date[Qtr]) && Not(isinscope(Date[Month])) , [sales YTD] - calculate([sales] -datesmtd( Date[Date])), blank())

 

Assuming you are using date table and time intelligence

 


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

 

To get the best of the time intelligence function. Make sure you have a date calendar and it has been marked as the date in model view. Also, join it with the date column of your fact/s. Refer :radacad sqlbi My Video Series Appreciate your Kudos.

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
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

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