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.
I have these 2 tables that are connected through timeID, I need to create a dax for Open, Close and Backlog incidents on monthly basis for example in the month of may count the number of incidents that are open and have open date started in May, No of tickets closed in May and No of backlog tickets that were opened before May and are still open in May. I have a month slicer and my chart should show open, close and backlog tickets versus months on x axis.
Hey @srahzafar9 ,
you can get the amount of open or closed with the following measure:
Open Incidents =
CALCULATE(
COUNTROWS( Table2 ),
Table2[Status] = "Open" && Table2[Type] = "Incident"
)
As your data is connected by TimeID you just have to put the desired time frame in a visual, for example May, and you can analyze what you want.
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 |
---|---|
11 | |
10 | |
10 | |
9 | |
8 |
User | Count |
---|---|
17 | |
13 | |
12 | |
11 | |
8 |