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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
I am trying to provide a visual with how many tickets were open each quarter over the past 3 years. I have the date the ticket was created and the completed date. I can't find a simple way to do this! Can anyone suggest the steps I need?
Thanks
Solved! Go to Solution.
Hi @jawilson ,
I'm using the following sample data:
Then I create a Calendar table and calculation column:
Calendar = CALENDAR( DATE(2019,1,1), TODAY() )Year_Quarter = YEAR([Date]) & " " & QUARTER([Date])
Create measure:
Measure =
CALCULATE(
DISTINCTCOUNT('Table'[Ticket ID]),
FILTER(
'Table',
'Table'[Created Date] <= MAX('Calendar'[Date])
&& 'Table'[Completed Date] > MAX('Calendar'[Date])
)
)
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @jawilson ,
I'm using the following sample data:
Then I create a Calendar table and calculation column:
Calendar = CALENDAR( DATE(2019,1,1), TODAY() )Year_Quarter = YEAR([Date]) & " " & QUARTER([Date])
Create measure:
Measure =
CALCULATE(
DISTINCTCOUNT('Table'[Ticket ID]),
FILTER(
'Table',
'Table'[Created Date] <= MAX('Calendar'[Date])
&& 'Table'[Completed Date] > MAX('Calendar'[Date])
)
)
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@jawilson , refer to the blog and the file attached. File has past period measure too
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 53 | |
| 51 | |
| 36 | |
| 15 | |
| 14 |
| User | Count |
|---|---|
| 93 | |
| 77 | |
| 41 | |
| 26 | |
| 26 |