Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
https://drive.google.com/file/d/1rXHBG2R5xuMtC0J-EwSaVsaunsjehjbf/view?usp=sharinghttps://drive.google.com/file/d/1siMKeL9KM2JerWBNoLyHpdgL_fFaF0yO/view?usp=sharing
I am trying to calculate YOY but not working...
Solved! Go to Solution.
Hi @staycool
By my test, your formula is worked. You can have a try to the following steps to check your table.
1.Required the table about date is a calendar table , if you use a time intelligence function.
2.Choose Modeling -->Manage Relationships. The relationship of two tables is many-to-one.
3.In report view, choose Modeling --> New Measure
DATEADD() and SAMEPERIODLASTYEAR() are related to the date, you need to add the date in the calendar table.
total sales = sum('data'[Gross Sales])
last year = CALCULATE('data'[total sales],DATEADD('Table2'[DATE].[Date],-1,year))
last year2 = CALCULATE( [total sales], SAMEPERIODLASTYEAR('Table 2'[Date].[Date]))
Different = IF( ISBLANK([last year2]),BLANK(),[last year2] -[total sales] )
YOY = [Different] / [last year2]
Best Regards,
Xue Ding
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @staycool
By my test, your formula is worked. You can have a try to the following steps to check your table.
1.Required the table about date is a calendar table , if you use a time intelligence function.
2.Choose Modeling -->Manage Relationships. The relationship of two tables is many-to-one.
3.In report view, choose Modeling --> New Measure
DATEADD() and SAMEPERIODLASTYEAR() are related to the date, you need to add the date in the calendar table.
total sales = sum('data'[Gross Sales])
last year = CALCULATE('data'[total sales],DATEADD('Table2'[DATE].[Date],-1,year))
last year2 = CALCULATE( [total sales], SAMEPERIODLASTYEAR('Table 2'[Date].[Date]))
Different = IF( ISBLANK([last year2]),BLANK(),[last year2] -[total sales] )
YOY = [Different] / [last year2]
Best Regards,
Xue Ding
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 39 | |
| 37 | |
| 33 | |
| 33 | |
| 29 |
| User | Count |
|---|---|
| 132 | |
| 90 | |
| 78 | |
| 66 | |
| 65 |