Forum Discussion
La_Brocante
2 years agoFrequent Visitor
Need help to create a grouped bar chart over date
Hi ! I'm discovering Power BI and can't find a way to translate my excel graph to Power BI. I have a table with this kind of values Issue Number Created on Solved on Topic I240701 04/05/...
VN999
Resolver I
2 years agoCreate below measure and check it works for your requirement or not ?
IssuesOpened = COUNTROWS(FILTER('YourTable', NOT(ISBLANK('YourTable'[Created on]))))
IssuesSolved = COUNTROWS(FILTER('YourTable', NOT(ISBLANK('YourTable'[Solved on]))))
Replace with YourTable in above measure.