March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Currently the last value (2050) is an average of all the previous years. I did a hack by creating additional roles in the data base where year is 2050. However, I would like to make the 2050 to "overall" but overall is not a number which messed up my x axis ordering. Is there a way i can change it to "Overall" while the y axis know how to sort it in asecnding manner and the "Overall" always appearing to the far right end?
Solved! Go to Solution.
In your data set you have a column with all of the Year numbers. Its the column you put into this graph to be one of your Axis.
Create a new dax column with the logic of
IF([YearColumn] = 2050, "Overall", [YearColumn]
(Where [YearColumn] is replaced with the name of your actual column containing year values.
After creating this column, make sure its selected and look for a menu called "Column Tools". There is an option in there called "Sort By Column", click on that and select the YearColumn.
Put this new column on your graph axis instead.
Sorry I don't seem to understand
In your data set you have a column with all of the Year numbers. Its the column you put into this graph to be one of your Axis.
Create a new dax column with the logic of
IF([YearColumn] = 2050, "Overall", [YearColumn]
(Where [YearColumn] is replaced with the name of your actual column containing year values.
After creating this column, make sure its selected and look for a menu called "Column Tools". There is an option in there called "Sort By Column", click on that and select the YearColumn.
Put this new column on your graph axis instead.
Yes! In the same table as your years, create a new column which is text and all of the year values are the same, except make the 2050 text value say "Overall". With that column created, use the column tools to tell it to "Sort By" and select the years column. This will put Overall at the end.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
87 | |
85 | |
70 | |
51 |
User | Count |
---|---|
205 | |
153 | |
97 | |
79 | |
69 |