Forum Discussion

LukeDurrant's avatar
LukeDurrant
Frequent Visitor
2 years ago
Solved

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

  • 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])
  • Anonymous's avatar
    Anonymous
    Not 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 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 in the Power BI Forum