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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
faint127
Frequent Visitor

Calculated Column grouped by Category and condition

Hey Guys

 

Im trying to create a Calculated Column (Calculated Date) that returns the last DateWithData, grouped by Product.

 

I can only manage to get min by Product

CALCULATE(min(Table1[DateWithData]), ALLEXCEPT(Product[ProductName]))

 

Any ideas?


Thanks in advance

Screenshot_1.jpg

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

Hi @faint127 ,

 

Here we go.

 

calculated date =
VAR currecntdate = [Data]
RETURN
    CALCULATE (
        MAX ( 'Table (2)'[datewithdata] ),
        FILTER (
            'Table (2)',
            'Table (2)'[Product] = EARLIER ( 'Table (2)'[Product] )
                && 'Table (2)'[Data] <= currecntdate
        )
    )

Capture.PNG

 

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

View solution in original post

2 REPLIES 2
v-frfei-msft
Community Support
Community Support

Hi @faint127 ,

 

Here we go.

 

calculated date =
VAR currecntdate = [Data]
RETURN
    CALCULATE (
        MAX ( 'Table (2)'[datewithdata] ),
        FILTER (
            'Table (2)',
            'Table (2)'[Product] = EARLIER ( 'Table (2)'[Product] )
                && 'Table (2)'[Data] <= currecntdate
        )
    )

Capture.PNG

 

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.
Greg_Deckler
Super User
Super User

Seems like you need something like this: https://community.powerbi.com/t5/Quick-Measures-Gallery/Lookup-Min-Max/td-p/985814


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.