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
Raul
Post Patron
Post Patron

Different periods for different measures

Hello everyone!

I have this PBI file File

I need to be able to present the selected year in the visualization with respect to the previous year to show the values of the measures. How can I do this?

Img1.JPG
Thank you very much.

1 ACCEPTED SOLUTION

This is my solution:

Mesures:

T.Facturas = ABS(CALCULATE(SUM(Contabilidad[Amount]),Contabilidad[Document Type]=1))
 
TotalFacturas =
         Var ActualYear = MAX(Calendario[Año])
         Return IF(MAX(Periodos[Año])=ActualYear, [T.Facturas], IF(MIN(Periodos[Año])=ActualYear-1,CALCULATE([T.Facturas], DATEADD(Calendario[Fecha], -1,YEAR)), [T.Facturas]))
 
 

View solution in original post

5 REPLIES 5
Arklur
Resolver II
Resolver II

There is no need for a 2nd date table, this can easily be done using only 1 with the right measures:

MaxYearValue = 
VAR vMaxYear = 
    MAX ( DateTable[Year] )
RETURN
    CALCULATE ( 
        SUM ( Data[Value] ),
        DateTable[Year] = vMaxYear
    )
PreviousYearValue = 
VAR vMaxYear = 
    MAX ( DateTable[Year] )
RETURN
    CALCULATE ( 
        SUM ( Data[Value] ),
        DateTable[Year] = vMaxYear - 1
    )

image.png

Thanks @Arklur and @amitchandak  you for your help. It's not exactly what I needed but it's given me a couple of ideas.

Hi , @Raul 

Can you explain bit more?

For now, there is no other content of description in the thread. If you still need help, please share more details to us.

 

Best Regards,
Community Support Team _ Eason

This is my solution:

Mesures:

T.Facturas = ABS(CALCULATE(SUM(Contabilidad[Amount]),Contabilidad[Document Type]=1))
 
TotalFacturas =
         Var ActualYear = MAX(Calendario[Año])
         Return IF(MAX(Periodos[Año])=ActualYear, [T.Facturas], IF(MIN(Periodos[Año])=ActualYear-1,CALCULATE([T.Facturas], DATEADD(Calendario[Fecha], -1,YEAR)), [T.Facturas]))
 
 
amitchandak
Super User
Super User

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.