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

Fiscal quarter to date calculation

Hi everyone,

 

I have a date table with fiscal quarter number defined per our organization.  How can I sum a list of numbers from a separate table according to the fiscal quarters I defined in my calendar table?

 

Many thanks!

5 REPLIES 5
Ashish_Mathur
Super User
Super User

Hi,

 

There should be a relationship from the Date column of the Other Table to the Date column of the Calendar Table.  In your visual, drag the Fiscual Quarters from the Calendar Table.  Write this measure

 

=SUM(Data[Amount])

 

Hope this helps.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
Anonymous
Not applicable

My question is about a way to create a measure to calculate fiscal quarter to date (versus the default QTD)

Hi,

Assuming your fiscal quarter is from April to March, write these calculated column formula in the Calendar Table.

Fiscal Year = IF(MONTH(Calendar[Date])<=3,YEAR(Calendar[Date])-1&"-"&YEAR(Calendar[Date]),YEAR(Calendar[Date])&"-"&YEAR(Calendar[Date])+1)

Month = FORMAT(Calendar[Date],"mmmm")

In your visual, drag Fiscal Year and Month from the Calendar Table.  Write these measures

Revenue = SUM(Data[Amount])

QTD Revenue = CALCULATE([Revenue],DATESBETWEEN(Calendar[Date],EDATE(MIN(Calendar[Date]),-2),MAX(Calendar[Date])))

Hope this helps.

 

 


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
Anonymous
Not applicable

Thanks for the response.  What does "-2" mean in your formula:

 

QTD Revenue = CALCULATE([Revenue],DATESBETWEEN(Calendar[Date],EDATE(MIN(Calendar[Date]),-2),MAX(Calendar[Date])))

 

Also, using the concept of your formula above, what is the formula to calculate the value of Previous Fiscal Quarter?

You are welcome.  -2 means "Go back 2 months".  Does this give the correct result?


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

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.