Forum Discussion
yaabandoh
5 years agoFrequent Visitor
Count Date
Please I need help: I want to show that number of products that were relaunched in a particular month. I want to display this on a bar chart with my x-axis as the month-year, with the bar showing the...
- Anonymous5 years ago
yaabandoh Yu can create a measure like below-
Products Relaunched = CALCULATE(COUNT('Table'[Product Code]),FILTER('Table','Table'[Date Relaunched]<>BLANK()))And your visualization would look like this-Appreciate your kudos!! Please accept this post as solution if it helps.
Anonymous
5 years agoNot applicable
yaabandoh Yu can create a measure like below-
Products Relaunched = CALCULATE(COUNT('Table'[Product Code]),FILTER('Table','Table'[Date Relaunched]<>BLANK()))
And your visualization would look like this-
Appreciate your kudos!! Please accept this post as solution if it helps.
yaabandoh
5 years agoFrequent Visitor
Anonymous Thank you. Please I will like the graph to show bars for all the months, with 0 values for where there is no relaunch.
- Anonymous5 years agoNot applicable
yaabandoh Create a date table and make a relationship with the data table.
And use the month column from the date table.