Forum Discussion
three bar chart from same column
- 2 years ago
Hi MaliniBaktha
This is happening because you don't have an X-axis.
You just put 3 different measures.To get the graph you can generate a table of your measures, please follow these steps.
1. Create blank table with a column with your measures :
2. Regular measures of what you need
average = AVERAGE('Table'[Value])median = MEDIAN('Table'[Value])average = AVERAGE('Table'[Value])3. Create dynamic measure in the new table
bar measure = if (SELECTEDVALUE('measures table'[Measure])= "Minimum" ,[minimum],if (SELECTEDVALUE('measures table'[Measure])="Median",[median],[average]))4. Put column "measures column" from the new table on x axis and "bar measure" on Y:
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly
- 2 years ago
You are cool this wroked fine. I did the same before but made it wrongly
Hi MaliniBaktha
This is happening because you don't have an X-axis.
You just put 3 different measures.
To get the graph you can generate a table of your measures, please follow these steps.
1. Create blank table with a column with your measures :
2. Regular measures of what you need
3. Create dynamic measure in the new table
4. Put column "measures column" from the new table on x axis and "bar measure" on Y:
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly
- MaliniBaktha2 years agoHelper II
You are cool this wroked fine. I did the same before but made it wrongly
- Ritaf19832 years agoSuper User
Happy to help 😊