Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
So I have a dataset that has a Date Originated Column and a Date Complete Column for entries. I want to create a Clustered Column chart where in the x-axis is Jan - Dec only 2022. How would I create one bar that is the Date Originated Column(total count of all the entries that originated that month) and the other is the Date Complete(all entries that were completed that month)? Some entries have a Date originated before 2022 which i don't want to included.
Solved! Go to Solution.
Hi @powerbinoobster ,
Please new a calendar table like:
Calendar =
ADDCOLUMNS(
CALENDAR(MIN('Table'[Date Originated]),MAX('Table'[Date Complete])),
"Year",YEAR([Date]),
"Month",FORMAT([Date],"mmm"),
"Month Number",MONTH([Date])
)
Relationships:
Then new 2 measures:
Count of Date Originated = COUNTROWS('Table')
Count of Date Complete = CALCULATE(COUNTROWS('Table'),USERELATIONSHIP('Table'[Date Complete],'Calendar'[Date]))
and apply them with 'calendar'[year] and [month] to the visual and setting filter like:
The PBIX file is attached for reference.
Best Regards,
Gao
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data
Hi @powerbinoobster ,
Please new a calendar table like:
Calendar =
ADDCOLUMNS(
CALENDAR(MIN('Table'[Date Originated]),MAX('Table'[Date Complete])),
"Year",YEAR([Date]),
"Month",FORMAT([Date],"mmm"),
"Month Number",MONTH([Date])
)
Relationships:
Then new 2 measures:
Count of Date Originated = COUNTROWS('Table')
Count of Date Complete = CALCULATE(COUNTROWS('Table'),USERELATIONSHIP('Table'[Date Complete],'Calendar'[Date]))
and apply them with 'calendar'[year] and [month] to the visual and setting filter like:
The PBIX file is attached for reference.
Best Regards,
Gao
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
96 | |
69 | |
45 | |
39 | |
30 |
User | Count |
---|---|
155 | |
96 | |
60 | |
42 | |
41 |