Forum Discussion
Line chart range function
- Anonymous4 years ago
Hi Anonymous ,
Try adding a Relative date filter to the line chart.
It will automatically filter the data for this month based on Today() automatically.
Or you want to display all the data, use the auxiliary line to mark the current month's data:
Please new measures:
start of the month = EOMONTH(TODAY(),-1) + 1end of the month = EOMONTH(TODAY(),0)Add Lines:
Best Regards,
Gao
Community Support TeamIf there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data
- Anonymous4 years ago
Hi Anonymous ,
Do you want something like this?
If yes, please try measures like:
line_1 = CALCULATE ( [Measure], FILTER ( ALLSELECTED ( 'Calendar' ), 'Calendar'[Date] = EOMONTH ( MAX ( 'Calendar'[Date] ), -1 ) + 1 ) )line_2 = CALCULATE ( [Measure], FILTER ( ALLSELECTED ( 'Calendar' ), 'Calendar'[Date] = EOMONTH ( MAX ( 'Calendar'[Date] ), 0 ) ) )The PBIX file is attached for reference.
Best Regards,
Gao
Community Support TeamIf there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data
Gao,
This answer gets me close because it will filter the data for the current month. However this does not help me update the range of the line chart. Could this be done through a measure?
Hi Anonymous ,
Do you want something like this?
If yes, please try measures like:
line_1 =
CALCULATE (
[Measure],
FILTER (
ALLSELECTED ( 'Calendar' ),
'Calendar'[Date]
= EOMONTH ( MAX ( 'Calendar'[Date] ), -1 ) + 1
)
)line_2 =
CALCULATE (
[Measure],
FILTER (
ALLSELECTED ( 'Calendar' ),
'Calendar'[Date]
= EOMONTH ( MAX ( 'Calendar'[Date] ), 0 )
)
)
The PBIX file is attached for reference.
Best Regards,
Gao
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data