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
Anonymous
Not applicable

line graph

hi

i was trying to compare last year nd current year calls

but im not getting the correct month count

i was using the below dax

 

YTD lidlit = CALCULATE(COUNT(Request[Escalated to Lidl IT]),DATESYTD('Calendar'[Date]))
last ytd it = CALCULATE(COUNT(Request[Escalated to Lidl IT]),DATESYTD(dateadd('Calendar'[Date],-1,YEAR)))
greeshma_0-1613730608991.png

 


 
 

 

 

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Anonymous , At least one measure seems correct. Make sure the Calendar table is marked as the Date table.

 

In case you do not need YTD only month data

MTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESMTD('Date'[Date]))

last year MTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESMTD(dateadd('Date'[Date],-12,MONTH)))

 

 

View solution in original post

2 REPLIES 2
v-eqin-msft
Community Support
Community Support

Hi @Anonymous ,

 

Please try this:

YTD =
CALCULATE (
    COUNT ( 'Table'[Escalated to Lidl IT] ),
    DATESYTD ( 'Table'[Date] )
)
Last YTD = VAR DataMaxDate =
    CALCULATE ( MAX ( 'Table'[Date] ), ALL ('Table' ) )
RETURN
    CALCULATE (
        [YTD],
        SAMEPERIODLASTYEAR (
            INTERSECT (
                VALUES ( 'Table'[Date] ),
                DATESBETWEEN ( 'Table'[Date], BLANK (), DataMaxDate )
            )
        )
    )

 

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

 

amitchandak
Super User
Super User

@Anonymous , At least one measure seems correct. Make sure the Calendar table is marked as the Date table.

 

In case you do not need YTD only month data

MTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESMTD('Date'[Date]))

last year MTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESMTD(dateadd('Date'[Date],-12,MONTH)))

 

 

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.