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
Norbertus
Helper V
Helper V

sameperiode last year

Hi,

 

I want to compare data with the results in the same periode last year and have the next DAX formula:

  • Total Calls = COUNT(NLE_PowerBI_verzoeken[HID])
  • Total Calls LY = CALCULATE( [Total Calls] ;  SAMEPERIODLASTYEAR( Datum[Date]))

When i don't use a date-filter visual i see that the line "Total Calls LY" (last year) also shows the next year.

 

How can i complete the DAX formula that it have a maximum date of the current date?

 

YTD.JPG

 

 

Thanks

1 ACCEPTED SOLUTION
austinsense
Impactful Individual
Impactful Individual

The easiest way I've found to deal with this is to just check for a current value ...

 

Total Calls LY = IF( [Total Calls], 
     CALCULATE( [Total Calls] ; SAMEPERIODLASTYEAR( Datum[Date])),
     BLANK())
 

You actually don't need the third argument - BLANK() - because BLANK() is the default third argument for the IF() formula.

Austin is VP Operations at PowerPivotPro and a professional self-service enthusiast 🙂

View solution in original post

2 REPLIES 2
austinsense
Impactful Individual
Impactful Individual

The easiest way I've found to deal with this is to just check for a current value ...

 

Total Calls LY = IF( [Total Calls], 
     CALCULATE( [Total Calls] ; SAMEPERIODLASTYEAR( Datum[Date])),
     BLANK())
 

You actually don't need the third argument - BLANK() - because BLANK() is the default third argument for the IF() formula.

Austin is VP Operations at PowerPivotPro and a professional self-service enthusiast 🙂

Thanks a lot for the solution. It works fine

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.