Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
mkusler
Helper II
Helper II

Create A Stacked Column Chart that Shows Monthly Counts

I have a simple table of data that shows an "Issue_#" and three dates for each row. All I want to be able to do is create a stacked column chart that will show the number of "Issue_#"s that were "Raised", "Started" and "Completed" each Year and Month with the respective breakdowns.

 

I have tried building a calendar table and making the relatioships, but nothing I seem to do gives me the right information. Can someone provide a simple step by step explanation to what I need to do to make this work?

 

mkusler_0-1685732551543.png

 

 

 

2 ACCEPTED SOLUTIONS
Ritaf1983
Super User
Super User

 Hi @mkusler 
You can achieve it with disonacted date table and 3 dax dormulas for evrery "status":

Ritaf1983_0-1685784941202.png

 

1. 

StartedCount =
var start_ = min('Calendar'[Date])
var end_ =max('Calendar'[Date])
var starteD_count = CALCULATE(DISTINCTCOUNT('Table'[Issue]),
'Table'[started]>=start_ && 'Table'[started]<=end_)
return starteD_count
2.
RaisedCount =
var start_ = min('Calendar'[Date])
var end_ =max('Calendar'[Date])
var Rased_count = CALCULATE(DISTINCTCOUNT('Table'[Issue]),
'Table'[Raised]>=start_ && 'Table'[Raised]<=end_)
return Rased_count
3.
CompletedCount =
var start_ = min('Calendar'[Date])
var end_ =max('Calendar'[Date])
var _count = CALCULATE(DISTINCTCOUNT('Table'[Completed]),
'Table'[Completed]>=start_ && 'Table'[Completed]<=end_)
return _count
Result :
Ritaf1983_1-1685785084304.png

Link to a sample file 
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly



View solution in original post

Hello, I didn't quite understand the format of the date you displayed.
In general, you should create a numeric column that allows you to sort the column you use on your graph from the calendar table.
Here is an example from my answer in another discussion, you should use the same logic, refer to your format:
https://community.fabric.microsoft.com/t5/Desktop/Trend-lines-Month-Name-by-year-are-not-in-ascendin...

If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly

View solution in original post

5 REPLIES 5
mkusler
Helper II
Helper II

@Ritaf1983 Thank you again! That was a simple solution. I didn't even think of adding in a sort column. All is good now!

I was happy to assist 🙂

Ritaf1983
Super User
Super User

 Hi @mkusler 
You can achieve it with disonacted date table and 3 dax dormulas for evrery "status":

Ritaf1983_0-1685784941202.png

 

1. 

StartedCount =
var start_ = min('Calendar'[Date])
var end_ =max('Calendar'[Date])
var starteD_count = CALCULATE(DISTINCTCOUNT('Table'[Issue]),
'Table'[started]>=start_ && 'Table'[started]<=end_)
return starteD_count
2.
RaisedCount =
var start_ = min('Calendar'[Date])
var end_ =max('Calendar'[Date])
var Rased_count = CALCULATE(DISTINCTCOUNT('Table'[Issue]),
'Table'[Raised]>=start_ && 'Table'[Raised]<=end_)
return Rased_count
3.
CompletedCount =
var start_ = min('Calendar'[Date])
var end_ =max('Calendar'[Date])
var _count = CALCULATE(DISTINCTCOUNT('Table'[Completed]),
'Table'[Completed]>=start_ && 'Table'[Completed]<=end_)
return _count
Result :
Ritaf1983_1-1685785084304.png

Link to a sample file 
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly



That worked! Thank you!

 

One more question.....I can't seem to get my visual to sort the year/month correctly, and also there is another "0" being added after each year. Do you know how to fix this? I have tried changing the sort criteria, but it's always jumbled. 

 

mkusler_0-1685803942573.png

 

Is there something wrong with my calendar table setup for "Year Month Number"?

 

mkusler_1-1685804047645.png

 

 

Thanks again!

Hello, I didn't quite understand the format of the date you displayed.
In general, you should create a numeric column that allows you to sort the column you use on your graph from the calendar table.
Here is an example from my answer in another discussion, you should use the same logic, refer to your format:
https://community.fabric.microsoft.com/t5/Desktop/Trend-lines-Month-Name-by-year-are-not-in-ascendin...

If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.