Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
Hello Everyone!
I'm facing some difficulties in calculating the YoY Growth (sharing QTD sales vs the same period last year)
I'm using the formula below to calculate the QTD Orders from this year, and the result is coming right
QTD Sales = CALCULATE(COUNT('Orders'[Order Date]),DATESQTD(('Calendar'[ Date])))
The problem is in the formula that calculates the same period from last year:
Last Year QTD Orders = calculate(count(Orders'[Order Date]),DATESQTD(DATEADD('calendar'[ Date],-1,YEAR)))
It's bringing the result from the WHOLE quarter last year, not from the same period as this year (QTD)
I've tried to calculate using the SAMEPERIODLASTYEAR and I got the same results.
I don't know if the problem is in my calendar, which was built this way:
Calendar =
var mindate = year(MIN('Orders'[Order Date]))
var maxdate = YEAR(MAX('Orders'[Order Date]))
return
ADDCOLUMNS(
FILTER(
CALENDARAUTO(),
YEAR([Date]) >= mindate && YEAR([Date]) <= maxdate
),
"Year", YEAR([Date]),
"Month", FORMAT([Date],"mmmm"),
"Month_Number", MONTH([Date]),
"Quarter", FORMAT([Date], "\QQ"
)
)
I already marked the calendar as date table.
Thank you so much in advance
Hi luanamoreschi,
Can you please try:
Last Year QTD Sales =
CALCULATE(
[QTD Sales],
DATEADD('calendar'[ Date],-1,YEAR)
)
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Did you try
Last Year QTD Sales =
CALCULATE(
[QTD Sales],
SAMEPERIODLASTYEAR('Calendar'[Date])
)
?
BR
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 9 | |
| 6 | |
| 3 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 21 | |
| 14 | |
| 11 | |
| 6 | |
| 5 |