stocks
2 TopicsCustom Visual - Analyze popular stocks with Power BI ?
Hi, I am interest to understand how this graph from this dashboard is made, where multiple line charts pop up as you select multiple items on the slicer. I'm particularly interested in whether there is a bar chart equivalent as well. Thanks. Eric SngSolved1.8KViews0likes3CommentsHow to show the group result on chart by ignoring the category's filter?
Hello everyone, I have a table that includes info as below: Year Project Control (checking point in audit) Control Risk A project might have a few different checking points with different risks, and I take the highest risk in the project as the Project's Risk (Please find the pic below as reference). However, the result now is as pic below. It does count individuals but with the control risk, which makes the result should be 1 project in 2020 looks like 3. Is it because I put the "Risk" in the Category, meanwhile the connection between the "Risk" and "Control Risk" still works? To solve this problem, I tried to have this measurement by DAX: Project_amount = CALCULATE( DISTINCTCOUNT('Project'[Project Code]), #calculating project amount ALLEXCEPT('Project','Project'[Project Risk]), #keep the filter of the project risk #force the connection between Risk and Control Risk invaild CROSSFILTER( 'Risk'[Risk], 'Project-Control'[Control Risk], None), #force the connection between vaild CROSSFILTER( 'Risk'[Risk], 'Project'[Project Risk], Both), CROSSFILTER( 'Project-Control'[Project Code], 'Project'[Project Code], Both)) Please help and let me know if more information is required, thank you! Data Model:639Views0likes2Comments