Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateJoin 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.
Good day.
I am looking for asistance with a DAX measure to show the Sales detail for the prior complete Fiscal year.
My measure for the Previous fiscal YTD is working fine:
/*Previous Fiscal YTD*/
Sales (PYTD) =
VAR DataMaxDate = TODAY()
RETURN
CALCULATE (
CALCULATE([Total Sales], DATESYTD('Calendar'[Date].[Date],"28/2")),
SAMEPERIODLASTYEAR (
INTERSECT (
VALUES ( 'Calendar'[Date].[Date] ),
DATESBETWEEN ( 'Calendar'[Date].[Date], BLANK (), DataMaxDate )
)
)
, ALL( 'Calendar'[FiscalYear])
)
However the measure for showing the detail for the whole fiscal period, I am stuck with. Currently I have:
/*Full Previous Fiscal Year*/
Sales (PY) =
CALCULATE(
[Total Sales],filter('Calendar', year('Calendar'[Date]) = Year(Today())-1)
)
The results from this measure shows me the sales for the whole calendar year. It starts on 2022/01/01 instead of 2022/03/01.
It ends at 2022/12/30 where it should end on 2023/02/28.
In this snippet it shows where the Sales (PY) should start:
This snippet shows where it ends on the last day of the 2022, instead of ending on 2023-02-28:
What I need to achieve is a object like this. It compares the full year v the YTD.
Thank you very much in advance.
John
@IA_John Bit difficult to be specific with this without sample data. You may find this helpful - https://community.powerbi.com/t5/Community-Blog/To-bleep-With-Time-Intelligence/ba-p/1260000
Also, see if my Time Intelligence the Hard Way provides a different way of accomplishing what you are going for.
https://community.powerbi.com/t5/Quick-Measures-Gallery/Time-Intelligence-quot-The-Hard-Way-quot-TIT...
Also, these videos may help as well:
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
15 | |
9 | |
7 | |
7 | |
6 |
User | Count |
---|---|
22 | |
11 | |
10 | |
10 | |
8 |