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
blackavipowerbi
Regular Visitor

Last year same "DAY" not working

Hello, i have made the table as the image. I select the day that i want to compare with the same month, last year at the same day. In the corrent month, last year is not working. Can someone help me? The formula was:

 

Qtd. de Atd. 1 ANOS Anterior =
CALCULATE(
[Qtd. de Atendimentos],
DATEADD(ATDCalendario[Date],-12,MONTH)
)
 
blackavipowerbi_0-1636460707492.png

 

blackavipowerbi_1-1636460737250.png

 

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

Hi @blackavipowerbi,

Perhaps you can try to use the following formulas if helps:

Qtd. de Atendimentos =
VAR curr =
    MAX ( 'ATD'[MATRÍCULA] )
RETURN
    CALCULATE (
        COUNTA ( 'ATD'[MATRÍCULA] ),
        FILTER (
            ALLSELECTED ( 'ATD' ),
            'ATD'[MATRÍCULA] <= curr
                && QUARTER ( 'ATD'[MATRÍCULA] ) = QUARTER ( curr )
                && YEAR ( 'ATD'[MATRÍCULA] )
                    = YEAR ( curr ) - 1
        )
    )

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

View solution in original post

4 REPLIES 4
v-shex-msft
Community Support
Community Support

Hi @blackavipowerbi,

Did the above suggestions help with your scenario? if that is the case, you can consider Kudo or accept the helpful suggestions to help others who faced similar requirements.

If these also don't help, please share more detailed information to help us clarify your scenario to test.

How to Get Your Question Answered Quickly 

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.
v-shex-msft
Community Support
Community Support

Hi @blackavipowerbi,

Perhaps you can try to use the following formulas if helps:

Qtd. de Atendimentos =
VAR curr =
    MAX ( 'ATD'[MATRÍCULA] )
RETURN
    CALCULATE (
        COUNTA ( 'ATD'[MATRÍCULA] ),
        FILTER (
            ALLSELECTED ( 'ATD' ),
            'ATD'[MATRÍCULA] <= curr
                && QUARTER ( 'ATD'[MATRÍCULA] ) = QUARTER ( curr )
                && YEAR ( 'ATD'[MATRÍCULA] )
                    = YEAR ( curr ) - 1
        )
    )

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.
amitchandak
Super User
Super User

@blackavipowerbi , Make sure ATDCalendario is date table and marked as Date table(Option on right click of the table)

 

Also, hoping measure [Qtd. de Atendimentos] is not using any time intelligence function

 

Tks!!! Qtd. de Atendimentos calc is like this:

Qtd. de Atendimentos =
CALCULATE(
    COUNTA('ATD'[MATRÍCULA]),
    FILTER(
        ALLSELECTED('ATD'[MATRÍCULA]),
        ISONORAFTER('ATD'[MATRÍCULA], MAX('ATD'[MATRÍCULA]), DESC)
    )
)

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