Hi,
I want to see the previous year selected sales, I have order date as a hierarchy, I want to select year and see current year and previous year sales: for current year it works, for prevous year it doesn't work, these are the formulas I used:
Hi @Giada_Togliatti ,
Did the last reply solve your porblem? Please consider mark the answer as solution if it works.
Best Regards,
Jay
@Giada_Togliatti , Better to move this to date of year table as you need all
value previous year = VAR ANNO= (SELECTEDVALUE(Orders[Order Date].[Year]))
RETURN
CALCULATE(SUM(Orders[Sales]),all('Orders'),
Orders[Order Date].[Year]=ANNO -1)
value previous year =
VAR ANNO= maxx(allselected(Date),Date[[Year])
RETURN
CALCULATE(SUM(Orders[Sales]),all(Date),
Date[Year]=ANNO -1)
Or try something like (Example) //You can use year table in place of Date table
This Year = CALCULATE(sum('order'[Qty]),filter(ALL('Date'),'Date'[Year]=max('Date'[Year])))
Last Year = CALCULATE(sum('order'[Qty]),filter(ALL('Date'),'Date'[Year]=max('Date'[Year])-1))
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 :
https://radacad.com/creating-calendar-table-in-power-bi-using-dax-functions
https://www.archerpoint.com/blog/Posts/creating-date-table-power-bi
https://www.sqlbi.com/articles/creating-a-simple-date-table-in-dax/
Discussed same in webinar : https://community.powerbi.com/t5/Webinars-and-Video-Gallery/PowerBI-Time-Intelligence-Calendar-WTD-Y...
Power BI release plans for 2023 release wave 1 describes all new features releasing from April 2023 through September 2023.
Make sure you register today for the Power BI Summit 2023. Don't miss all of the great sessions and speakers!
User | Count |
---|---|
215 | |
54 | |
46 | |
44 | |
42 |
User | Count |
---|---|
287 | |
209 | |
79 | |
75 | |
66 |