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

Filtering using YTD and LYTD

Hello everyone,

 

We are trying to create following measure with DAX:

 

Actived_Customer (1/0): customer is actived when YTD Sales are higher than LYTD Sales.

 

We have following measures created:

 

ImporteA_YTD (YTD Sales) =
CALCULATE(
[ImporteA_Acum];
DATESBETWEEN(DimTiempo[Date];
DATE(YEAR([DateFilteredTo]);1;1);[DateFilteredTo])
)
 
ImporteA_LYTD (LYTD Sales) =
CALCULATE(
[ImporteA_Acum];
DATESBETWEEN(DimTiempo[Date];
DATE(YEAR([DateFilteredTo])-1;1;1);DATE(YEAR([DateFilteredTo])-1;MONTH([DateFilteredTo]);DAY([DateFilteredTo])))
)
 
We are trying following DAX code for the new measure, but it not works as expected.
 
DescCliente_Activo (Actived_Customer)=
CALCULATE(
DISTINCTCOUNT(DimCliente[DescCliente]);
FILTER(FactFacturaVenta; [ImporteA_YTD]>[ImporteA_LYTD])
)
 
The result is:
table.png
And the data model is:
diagram.png
 
Does somebody know how to create measure correctly?
 
Thanks in advanced!
2 REPLIES 2
amitchandak
Super User
Super User

Please try formula similar to these for YTD and LYTD. Make sure you created a separate date dimension

 

Year  = CALCULATE(SUM(table[column]),DATESYTD('Date'[Date Filer]))
Last Year  = CALCULATE(SUM(table[column]),DATESYTD(dateadd('Date'[Date Filer],-12,MONTH)))


Year Sales = CALCULATE(TOTALYTD(sum(Sales[Sales Amount]),('Date'[Date Filer])))
Year Sales = CALCULATE(TOTALYTD(sum(Sales[Sales Amount]),dateadd('Date'[Date Filer].-12,month)))

 

Appreciate your Kudos. In case, this is the solution you are looking for, mark it as the Solution. In case it does not help, please provide additional information and mark me with @
Thanks.

My Recent Blog - https://community.powerbi.com/t5/Community-Blog/Comparing-Data-Across-Date-Ranges/ba-p/823601

Anonymous
Not applicable

Hi @amitchandak ,

 

Thanks for your help.

 

The problem we had was with the Actived_Customer measure, not with date measures.

 

Finally, we solved it changing measure applying FILTER function on Customer dimension instead of sales fact.

 

DescCliente_Activo (Actived_Customer)=
CALCULATE(
DISTINCTCOUNT(DimCliente[DescCliente]);
FILTER(FactFacturaVentaDimCliente; [ImporteA_YTD]>[ImporteA_LYTD])
)

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.

Top Solution Authors