Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Myagi-Do
Helper I
Helper I

Same Period Last Month in Line Charts - How to remove non existing days

Hi there,

 

I am tying to create a line chart that shows this month values (sales or whatever) and last month values when the dates of the current selected month are on the x axis.   


I am expecting to see only dates in this chart which have an existing "day" in the previous month. This means data for march should only show days until the 28th since February has only 28 days. 

 

I can get it to work if I use last months dates on the x axis but this creates a confusing hover over meassage.

 

Screenshot 2023-05-31 at 21.56.50.png

 The values are present for non consecutive dates (some dates don't have values) and I am using a Calendar Table with consecutive dates for the filtering.

I tried several SPLM calculations which have the result seen above or use the wrong context in which the total amount is copied for all dates.

Screenshot 2023-05-31 at 22.02.39.png

 

Screenshot 2023-05-31 at 22.04.58.png


I watched videos from @marcorusso and others and I read @Greg_Deckler time intelligence blog post but I still don't get it.

Any ideas are appreciated. Here is a pbix file with the example.


1 ACCEPTED SOLUTION
v-jianboli-msft
Community Support
Community Support

Hi @Myagi-Do ,

 

Please try:

Measure_SPLM =
IF (
    DAY ( SELECTEDVALUE ( 'Calendar'[Date] ) )
        = DAY ( EDATE ( SELECTEDVALUE ( 'Calendar'[Date] ), -1 ) ),
    CALCULATE (
        SUM ( same_period[value] ),
        FILTER (
            ALL ( 'Calendar' ),
            [Date] = EDATE ( SELECTEDVALUE ( 'Calendar'[Date] ), -1 )
        )
    )
)

Output:

vjianbolimsft_0-1685675495460.png

Best Regards,

Jianbo Li

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
Myagi-Do
Helper I
Helper I

This worked like a charm. I see what you did there with the if statement and I didn't know the EDATE function before. 

Thanks for the help @v-jianboli-msft 


 

 

v-jianboli-msft
Community Support
Community Support

Hi @Myagi-Do ,

 

Please try:

Measure_SPLM =
IF (
    DAY ( SELECTEDVALUE ( 'Calendar'[Date] ) )
        = DAY ( EDATE ( SELECTEDVALUE ( 'Calendar'[Date] ), -1 ) ),
    CALCULATE (
        SUM ( same_period[value] ),
        FILTER (
            ALL ( 'Calendar' ),
            [Date] = EDATE ( SELECTEDVALUE ( 'Calendar'[Date] ), -1 )
        )
    )
)

Output:

vjianbolimsft_0-1685675495460.png

Best Regards,

Jianbo Li

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.