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! It's time to submit your entry. Live now!
I have a column (Incident), and I created a messure Count(Count_of_Incidents), same table has 2 dates columns Create_Date and Resolved_Date.
I created Hirarchy on both Date Columns (Yr--> QTR --> Mo).
I want to create a Clusterd column chart, that shows Count_of_Incidents by Create_Date and Count_of_Incidents by Resolved_Date
I shared AXIS with both Hirarchies, but it does not show the data for Resolved_Date.
Apprecitae your help.
Solved! Go to Solution.
@Anonymous,
You could add a calculated table.
Calendar = CALENDARAUTO ()
@Anonymous,
You may add a calendar table and use measures below.
Measure =
VAR minDate =
MIN ( 'Calendar'[Date] )
VAR maxDate =
MAX ( 'Calendar'[Date] )
RETURN
CALCULATE (
COUNT ( Table1[incident] ),
Table1[Create_Date] >= minDate
&& Table1[Create_Date]
< maxDate + 1
)
Measure 2 =
VAR minDate =
MIN ( 'Calendar'[Date] )
VAR maxDate =
MAX ( 'Calendar'[Date] )
RETURN
CALCULATE (
COUNT ( Table1[incident] ),
Table1[Resolved_Date] >= minDate
&& Table1[Resolved_Date]
< maxDate + 1
)
Sorry, I'm new to Power BI. When you say Add Calender Table. Is it an option within Power BI or do I have to create a table in the DB?
@Anonymous,
You could add a calculated table.
Calendar = CALENDARAUTO ()
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 61 | |
| 47 | |
| 39 | |
| 23 | |
| 23 |
| User | Count |
|---|---|
| 144 | |
| 106 | |
| 63 | |
| 38 | |
| 31 |