Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
NickProp28
Post Partisan
Post Partisan

Filter MAX date in CALCULATETABLE

Dear Community,

 

I had use CALCULATETABLE to filter from main table and create a new table. 

But after new table formed, I realized there have duplicate issues. 
To workaround this issue, I would like to choose the MAX date of ETD if there have duplicate consolnumber.

NickProp28_1-1608539327861.png


This is my CALCULATETABLE dax,

SummRoute =
CALCULATETABLE(
ConsolLegs,
FILTER(ConsolLegs,
ConsolLegs[IsDomestic] = "N" && ConsolLegs[Rank] = 1 )
)
Question is how can I filter the Max DATE ? I tried add on MAX(ConsolLegs[ETD]  before the filter, but it result fail.
Or I should use SUMMARIZE instead of CALCULATETABLE?
Any helps would appreciated. Thanks


2 ACCEPTED SOLUTIONS
AlB
Community Champion
Community Champion

@NickProp28 

Try this then

New table2 = 
FILTER (
    FILTER ( Route, Route[IsDomestic] = "N" && Route[Rank] = 1 ),
    VAR max_ =
        CALCULATE (
            MAX ( Route[ETD] ),
            ALLEXCEPT ( Route, Route[ConsolNumber] ), Route[IsDomestic] = "N", Route[Rank] = 1
        )
    RETURN
        Route[ETD] = max_
)

 

Please mark the question solved when done and consider giving a thumbs up if posts are helpful.

Contact me privately for support with any larger-scale BI needs, tutoring, etc.

Cheers 

 

SU18_powerbi_badge

View solution in original post

AlB
Community Champion
Community Champion

@NickProp28 

See it all at work in the attached file.

Please mark the question solved when done and consider giving a thumbs up if posts are helpful.

Contact me privately for support with any larger-scale BI needs, tutoring, etc.

Cheers 

 

SU18_powerbi_badge

View solution in original post

10 REPLIES 10
AlB
Community Champion
Community Champion

@NickProp28 

See it all at work in the attached file.

Please mark the question solved when done and consider giving a thumbs up if posts are helpful.

Contact me privately for support with any larger-scale BI needs, tutoring, etc.

Cheers 

 

SU18_powerbi_badge

AlB
Community Champion
Community Champion

@NickProp28 

Try this then

New table2 = 
FILTER (
    FILTER ( Route, Route[IsDomestic] = "N" && Route[Rank] = 1 ),
    VAR max_ =
        CALCULATE (
            MAX ( Route[ETD] ),
            ALLEXCEPT ( Route, Route[ConsolNumber] ), Route[IsDomestic] = "N", Route[Rank] = 1
        )
    RETURN
        Route[ETD] = max_
)

 

Please mark the question solved when done and consider giving a thumbs up if posts are helpful.

Contact me privately for support with any larger-scale BI needs, tutoring, etc.

Cheers 

 

SU18_powerbi_badge

amitchandak
Super User
Super User

@NickProp28 , did the above one worked. if not

Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Dear @amitchandak ,

 

https://ufile.io/qf1fouxz
Kindly take a look on this PBIX.
Consolnumber C001490 has duplicated. And I only want to choose the MAX(Consolnumber[ETD]) 
Appreciated for the help.

@NickProp28 , Try if this can help

NewTable = var _max = maxx(Route, Route[ETD])
return 
filter(CALCULATETABLE(
    ADDCOLUMNS(Route, "Rank1", rankx(filter(Route, [ConsolNumber] =EARLIER([ConsolNumber])),[ETD])),
FILTER((Route),
Route[IsDomestic] = "N" && Route[Rank] = 1  )
),[Rank1]=1)
Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
AlB
Community Champion
Community Champion

Hi @NickProp28 

Try creating a new calculated table:

New table =
FILTER (
    FILTER ( ConsolLegs, ConsolLegs[IsDomestic] = "N" && ConsolLegs[Rank] = 1 ),
    VAR max_ =
        CALCULATE (
            MAX ( ConsolLegs[ETD] ),
            ALLEXCEPT ( ConsolLegs, ConsolLegs[ConsolNumber] )
        )
    RETURN
        ConsolLegs[ETD] = max_
)

Please mark the question solved when done and consider giving a thumbs up if posts are helpful.

 

Contact me privately for support with any larger-scale BI needs, tutoring, etc.

 

Cheers 

 

SU18_powerbi_badge

 

Dear @AlB ,

 

Thanks for your time and help.
I follow your code, but it return nothing. 

NickProp28_0-1608542941971.png

 

AlB
Community Champion
Community Champion

@NickProp28 

That's weird. It should certainly return something. 

You seem to have filters active in two columns in the pic you show. Make sure to clear those.

Otherwise share some sample data or best the pbix itself

 

Please mark the question solved when done and consider giving a thumbs up if posts are helpful.

Contact me privately for support with any larger-scale BI needs, tutoring, etc.

Cheers 

 

SU18_powerbi_badge

 

amitchandak
Super User
Super User

@NickProp28 , Summarize will delete any duplicates ,

You should try like example

new table =

var _max = MAXX(ConsolLegs,ConsolLegs[ETD]  )

return

calculatetable(ConsolLegs, filter(ConsolLegs, ConsolLegs,ConsolLegs[ETD]  =_max)) //add other filters ot use summarize

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Dear @amitchandak ,

 

Thanks for the time and guide, but I not sure if I follow your code correctly.. 
Kindly advice.

NickProp28_1-1608543334661.png

 

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!

November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.