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
I am trying to create a YoY table and chart based on the below data. When I follow other suggestions, i am not getting the results I need, no matter what date in the fields I am choosing.
Sample data below. I am trying to show incidents YoY, and eventually compared vs previous years months, quarters, etc.
https://docs.google.com/spreadsheets/d/182ShbgQ7-og_tigZF5T_ewvbuSYFfbzOfwVSx8NvQEU/edit?usp=sharing
Solved! Go to Solution.
Hi @raicardi ,
You can do that with the DATEADD function
Step 1: Clean your excel Data >> On the date column Find and replace 0:00 with blank
Step 2: Load your excel to Power Bi
Step 3: Create a new measure
Count of Index LY =
CALCULATE(
COUNT(Sheet1[Count of INCIDENT]),
DATEADD(Sheet1[DATE],-1,YEAR)
)
Step 4 : Visualize
If that helps, please mark this as a solution
BR
Hi @raicardi ,
You can do that with the DATEADD function
Step 1: Clean your excel Data >> On the date column Find and replace 0:00 with blank
Step 2: Load your excel to Power Bi
Step 3: Create a new measure
Count of Index LY =
CALCULATE(
COUNT(Sheet1[Count of INCIDENT]),
DATEADD(Sheet1[DATE],-1,YEAR)
)
Step 4 : Visualize
If that helps, please mark this as a solution
BR
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 66 | |
| 47 | |
| 43 | |
| 26 | |
| 19 |
| User | Count |
|---|---|
| 198 | |
| 126 | |
| 102 | |
| 67 | |
| 50 |