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
AdiKujan
Frequent Visitor

Looking for a way to return the first value based on two sorting functions

Hi guys,

 

 

I have a table which party looks as follows:

 

Customer,    Order#,    OrderDate,    SalesChannel

 

We can have multiple customers, with multiple OrderDates, and SalesChannels, but there can only be one Order#.

I need a 5th column which returns to me the first SalesChanel based on Orderdate and Order#

It needs to look at the OrderDate first, and Order# second. The reason for this is we have used multiple Order# formats over time.

 

 

Hopefully one of you guys can help me with this problem. If it's not clear I can post some screenshots.

 

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

HI @AdiKujan,

 

You can try to use below formula if it works on your side:

First SalesChannel =
VAR min_date =
    CALCULATE (
        MIN ( Table[OrderDate] ),
        FILTER (
            ALL ( Table ),
            [Customer] = EARLIER ( Table[Customer] )
                && [Order#] = EARLIER ( Table[Order#] )
        )
    )
RETURN
    CALCULATE (
        MIN ( Table[SalesChannel] ),
        FILTER (
            ALL ( Table ),
            [Customer] = EARLIER ( Table[Customer] )
                && [Order#] = EARLIER ( Table[Order#] )
                && [OrderDate] = min_date
        )
    )

If above not help, can you please share some sample data for test and coding formula?

 

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

1 REPLY 1
v-shex-msft
Community Support
Community Support

HI @AdiKujan,

 

You can try to use below formula if it works on your side:

First SalesChannel =
VAR min_date =
    CALCULATE (
        MIN ( Table[OrderDate] ),
        FILTER (
            ALL ( Table ),
            [Customer] = EARLIER ( Table[Customer] )
                && [Order#] = EARLIER ( Table[Order#] )
        )
    )
RETURN
    CALCULATE (
        MIN ( Table[SalesChannel] ),
        FILTER (
            ALL ( Table ),
            [Customer] = EARLIER ( Table[Customer] )
                && [Order#] = EARLIER ( Table[Order#] )
                && [OrderDate] = min_date
        )
    )

If above not help, can you please share some sample data for test and coding formula?

 

Regards,

Xiaoxin Sheng

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

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.