Forum Discussion
iGWizard
1 year agoFrequent Visitor
Displaying Data Labels at 3 month intervals
Hi, I have a line chart, and would like to display its data labels at 3 month intervals (to avoid over crowding). I understand I need to use DAX to fulfill this, potentially using DATESINPERIOD(). ...
- 1 year ago
New Measure
LabelEvery3Months =
IF(
MOD(MONTH('Date'[Date]), 3) = 0,
[YourMeasure],
BLANK()
)Replace [YourMeasure] with the measure or value youโre plotting on the line chart
Use this new LabelEvery3Months measure as your data labels instead of the regular measure.
๐ If this helped, a Kudos ๐ or Solution mark would be great! ๐
Cheers,
Kedar
Connect on LinkedIn
Kedar_Pande
Super User
1 year agoNew Measure
LabelEvery3Months =
IF(
MOD(MONTH('Date'[Date]), 3) = 0,
[YourMeasure],
BLANK()
)
Replace [YourMeasure] with the measure or value youโre plotting on the line chart
Use this new LabelEvery3Months measure as your data labels instead of the regular measure.
๐ If this helped, a Kudos ๐ or Solution mark would be great! ๐
Cheers,
Kedar
Connect on LinkedIn