Forum Discussion
Anonymous
4 years agoNot applicable
Multiple Column in a clustered column Chart
Hello, I'm new to Power BI so there are a lot of things I can not figure out. I need little help with a problem, I have a few custom columns having a count of records in them and I want to put the...
Anonymous
4 years agoNot applicable
I can not use this third-party extension you implemented, is there any other way you can suggest?
RicoZhou2
4 years agoResolver I
Hi Anonymous ,
If your data model looks like as below, I suggest you to create a new table with all column names and add it into visual X-Axis Field.
Axis =
{"Phase 1","Phase 2","Phase 3"}Measure:
Measure =
SWITCH(SELECTEDVALUE('Axis'[Value]),"Phase 1",SUM('Table'[Phase 1]),"Phase 2",SUM('Table'[Phase 2]),"Phase 3",SUM('Table'[Phase 3]))Result is as below.
Best Regards.