The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
I have a line chart that is simply couting days and plotting the number of rows by date from left to right. When I show the data by month it looks fine but I want to show it by day (e.g. 2/26, 2/27, 2/28, etc) it just shows numbers
Here is by month...which looks good:
Here is by day, which is not what I want. How do I change this show it shows the actual days?
Solved! Go to Solution.
Hi,
Please try to create this column:
Column = FORMAT('Table'[Date],"MMMM")&"-"&DAY('Table'[Date])
Then add an index column to this table, After Apply&Close, sort this column by [Index].
Add this column to line chart visual instead of [Date].[Day], the result shows:
Hope this helps.
Best Regards,
Giotto Zhi
Hi,
Please try to create this column:
Column = FORMAT('Table'[Date],"MMMM")&"-"&DAY('Table'[Date])
Then add an index column to this table, After Apply&Close, sort this column by [Index].
Add this column to line chart visual instead of [Date].[Day], the result shows:
Hope this helps.
Best Regards,
Giotto Zhi
Click on the dropdown for Load Date Adj and select "Date" instead of "Date Hierarchy".
You can then format Load Date Adj to show as much or as little of the date as you want. Then change the X axis to Categorical (this may make the chart get really big on the X axis)
Alternatively you can keep Month and Day, and just drill down to the Day level.
Concatenate or do not concatenate labels as desired.
Hope this helps
David
This is great, Thanks for share your knowledge.
This is awesome. So much simpler than writing an unnecessary complicated Dax formula or coding a new column. Thank you!