Forum Discussion
Calculated TREND line but wrong displayed X axis
- 3 years ago
Hi MKPartner
Do you use Month End Date column on X axis? If so, it will move one month right to the next month because Power BI will adjust the axis display values automatically according to the width of the visual. As the month end date is near the start date of next month, it moves to the next month.
To avoid this, it is recommended to use a date column like Month Start date on the axis. Based on your current DAX, you can try
WC_Month = EOMONTH('COQ Calendar'[Year] & " " & 'COQ Calendar'[Month_2],-1) + 1Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
Hi MKPartner
Do you use Month End Date column on X axis? If so, it will move one month right to the next month because Power BI will adjust the axis display values automatically according to the width of the visual. As the month end date is near the start date of next month, it moves to the next month.
To avoid this, it is recommended to use a date column like Month Start date on the axis. Based on your current DAX, you can try
WC_Month = EOMONTH('COQ Calendar'[Year] & " " & 'COQ Calendar'[Month_2],-1) + 1
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.