Reputation: 41
I want to show day of the week instead of dates in the line chart. I am using SSAS as data source. I already search online for solution, some of it suggest to use sort by column. But in the Power BI, the option is disabled, since I am using SSAS and Live connection.
Upvotes: 0
Views: 977
Reputation: 4967
For Live Connections you will be limited to the modifications that you can do. For your use case you'll need to add a column, which you can NOT do with a live connection. You would use a DAX formula of DAY([date]) to do this. I'm assuming that you have a Calendar/Date dimension table in the SSAS model, I would recommend feeding back to the data owner to add the column and other date categories that you need.
Hope that helps
Upvotes: 2