Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin 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.
Hi, using the table below, I want to split up 2023 and 2024 and have a Count based on how many end dates there are. I'm looking for:
2023 = 3
2024 = 5
Start_Date | End_Date |
01/06/2023 | 01/07/2023 |
01/07/2023 | 25/07/2023 |
01/08/2023 | |
01/09/2023 | 12/09/2023 |
01/06/2024 | 01/07/2024 |
01/07/2024 | 01/08/2024 |
01/08/2024 | |
01/09/2024 | 22/09/2024 |
01/10/2024 | 11/10/2024 |
01/11/2024 | 21/11/2024 |
Thanks
Solved! Go to Solution.
Hi @RichOB ,
Please try creating calculated column,
End_Year = IF(NOT ISBLANK([End_Date]), YEAR([End_Date]))
Hi @RichOB,
I'm not sure about out put results you are looking. However I am assuming you want to to count end dates based on year. you can follow the below steps.
1.Make sure year column is avaialble in the dataset (Create a calculated column based on enddate). I believe provided End_Date is not in proper Date format. Make sure all dates are in Date format.
EndDtYr = YEAR('Table'[End_Date])
2.Create a measure for count of end dates
CountEnd_Date = COUNT('Table'[End_Date])
3.Make sure when you are using EndDtYr column should be don't summarize.
Thanks,
If you found this solution helpful, please consider giving it a Like👍 and marking it as Accepted Solution✔. This helps improve visibility for others who may be encountering/facing same questions/issues.
Hi @RichOB ,
Please try creating calculated column,
End_Year = IF(NOT ISBLANK([End_Date]), YEAR([End_Date]))
Hello, can you be more specific about what "input" means ? Do you mean by input "not null" ?
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
72 | |
71 | |
55 | |
37 | |
31 |
User | Count |
---|---|
89 | |
62 | |
61 | |
49 | |
45 |