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

Most recent date considering 2 parameters

Hi Guys,

How could I get the last date considering 2 columns: the project and the project module?

For example, in the table below, I need to consider the last date of the Module (M1) of the Subproject (Botucatu - Veronica 1) which is 01/01/2023.

kasife_0-1672271913593.png

 

I tried to use the function, but it didn't work:

_Ultima Data do repasse = 
VAR _max = maxx(
    filter(
        ALLSELECTED(f_reaal_realizado), f_reaal_realizado[Subprojeto] = Max(f_reaal_realizado[Subprojeto])),f_reaal_realizado[Data Repasse]) 

RETURN 
CALCULATE(
    max(f_reaal_realizado[Data Repasse]), 
    filter((f_reaal_realizado) ,  f_reaal_realizado[Data Repasse] =_max))

 

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

Hi @kasife ,

 

According to your description, here are my steps you can follow as a solution.

(1) This is my test data.  

Picture1.png

(2) We can create a measure.

 

_Ultima Data do repasse =
CALCULATE (
    MAX ( 'f_reaal_realizado'[Data Repasse] ),
    FILTER (
        ALLEXCEPT (
            'f_reaal_realizado',
            'f_reaal_realizado'[Subproject],
            'f_reaal_realizado'[Module]
        ),
        'f_reaal_realizado'[Data Repasse]
    )
)

 

(3) Then the result is as follows.

vtangjiemsft_0-1672281983529.png

 

Best Regards,

Neeko Tang

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

View solution in original post

2 REPLIES 2
v-tangjie-msft
Community Support
Community Support

Hi @kasife ,

 

According to your description, here are my steps you can follow as a solution.

(1) This is my test data.  

Picture1.png

(2) We can create a measure.

 

_Ultima Data do repasse =
CALCULATE (
    MAX ( 'f_reaal_realizado'[Data Repasse] ),
    FILTER (
        ALLEXCEPT (
            'f_reaal_realizado',
            'f_reaal_realizado'[Subproject],
            'f_reaal_realizado'[Module]
        ),
        'f_reaal_realizado'[Data Repasse]
    )
)

 

(3) Then the result is as follows.

vtangjiemsft_0-1672281983529.png

 

Best Regards,

Neeko Tang

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

It worked great, thank you so much @v-tangjie-msft 

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.