Forum Discussion
LukeDurrant
2 years agoFrequent Visitor
YTD Graph
Ive got a YTD graph which adds all my values together and shows when they occured. The last entry occured in July 23. Is it possible to cut off the rest of the graph (Aug-Dec)
pls try this
M1 = IF(NOT ISEMPTY(yourtableSales),[yourmeasure])or
M1 =
VAR _MaxDate = CALCULATE(Max(yourtableSales[Date]),REMOVEFILTERS())
RETURN
IF(MAX(Calendar[Date]) =_MaxDate ,[yourmeasure])
2 Replies
- AhmedxSuper User
pls try this
M1 = IF(NOT ISEMPTY(yourtableSales),[yourmeasure])or
M1 =
VAR _MaxDate = CALCULATE(Max(yourtableSales[Date]),REMOVEFILTERS())
RETURN
IF(MAX(Calendar[Date]) =_MaxDate ,[yourmeasure]) - AnonymousNot applicable
Hi, LukeDurrant
Based on your description, I have created many measures to achieve the effect you are looking for. Following picture shows the effect of the display.
Measure:
IsIncluded = VAR _getDate = CALCULATE ( MIN ( 'Table'[date] ) ) VAR _dateEnd = DATE ( 2024, 2, 19 ) RETURN IF ( _getDate <= _dateEnd, "true", "false" )Best Regards,
Yang
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 in the Power BI Forum