Forum Discussion
How Do I Arrange A column On A Line & Cluster Chart
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
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?
- AnalyticPulse2 years agoSolution 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- Sheyi_Shomefun2 years agoNew Member
Still no changes.
Could you explain what this means?- AnalyticPulse2 years agoSolution Sage
are you creating a measure or column. this dax is for creating the column,
and can you shwo which dax you are using?
this error should not come when you're suing the provided dax. phases column in phases_1 table has multiple columns and error means that you're not using any function like min max etc that returns the single value. please provide more info.