Forum Discussion
How Do I Arrange A column On A Line & Cluster Chart
I'm trying to sort/arrange the values on the columns using a custom arrangement on this viz.
I'm trying to arrange in this order - (Demurrage, Pre-Development, Early Development, Advanced Development, and Signed).
Can someone please advise me on what to do?
7 Replies
- AnalyticPulseSolution Sage
It is very simple add new column in data table in which these column categories are present and then add sequence number for the categories like you mentioned.
use this dax to add column:
Serial Number =
SWITCH(
'YourTable'[Category],
"Demurrage", 1,
"Pre-Development", 2,
"Early Development", 3,
"Advanced Development", 4,
"Signed", 5,
BLANK()
)now order your category column based on this new column in data view. select yout category column , GO to column tools, click on sort by column.
on the visual change the ascending or descending order of the x asis fron the sort option available at the top right corner. this will solve the isssue.
If this helped, Subscribe AnalyticPulse on YouTube for future updates:
https://www.youtube.com/@AnalyticPulse
https://instagram.com/analytic_pulse
https://analyticpulse.blogspot.com/subscribe to Youtube channel For fun facts:
https://www.youtube.com/@CogniJourney- Sheyi_ShomefunNew Member
Hi,
So this is the problem I'm facing. I know about Switch but for some reason, it's not recognising the category.Any suggestions?
- AnalyticPulseSolution Sage
no of stages completed column is in another table which is not related to your current table, create realationship or check the column name. check for extra spaces in column name.
If this helped, Subscribe AnalyticPulse on YouTube for future updates:
https://www.youtube.com/@AnalyticPulse
https://instagram.com/analytic_pulse
https://analyticpulse.blogspot.com/subscribe to Youtube channel For fun facts:
https://www.youtube.com/@CogniJourney