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

First product bought - cohort

HI,

 

I have the next table:

Customer Id - rank* - Order Id - SKU

   1234         -   1     - 7894        - SKU 1

   1234         -   2     - 7856        - SKU 2

   1456         -   1     - 7676        - SKU 1

   1456         -   2     - 7906        - SKU 3

   1789         -   1     - 7236        - SKU 5

   1906         -   1     - 7576        - SKU 2

* rank is based on purchase date. 

 

I want to have a column that will show the first SKU that this customer bought. Like:

Customer Id - rank - Order Id - SKU          -  FIRST SKU 

   1234         -   1    - 7894        - SKU 1       - SKU 1  

   1234         -   2    - 7856        - SKU 2       - SKU 1  

   1456         -   1    - 7676        - SKU 5       - SKU 5  

   1456         -   1    - 7676        - SKU 2       - SKU 5  

   1456         -   2    - 7906        - SKU 3       - SKU 5  

   1789         -   1    - 7236        - SKU 5       - SKU 5  

   1906         -   1    - 7576        - SKU 2       - SKU 2  

In case if one order (like 7676) have few SKU, any SKU can be choose.

 

Thanks!!

1 ACCEPTED SOLUTION
v-piga-msft
Resident Rockstar
Resident Rockstar

Hi @juli__sia123412 ,

You could try the calculated column below.

Column =
CALCULATE (
    MAX ( 'Table1'[SKU] ),
    FILTER (
        'Table1',
        'Table1'[Rank] = MIN ( 'Table1'[Rank] )
            && 'Table1'[Customer ID] = EARLIER ( Table1[Customer ID] )
    )
)

Here is the output.

Capture.PNG

Best  Regards,

Cherry

 

Community Support Team _ Cherry Gao
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

1 REPLY 1
v-piga-msft
Resident Rockstar
Resident Rockstar

Hi @juli__sia123412 ,

You could try the calculated column below.

Column =
CALCULATE (
    MAX ( 'Table1'[SKU] ),
    FILTER (
        'Table1',
        'Table1'[Rank] = MIN ( 'Table1'[Rank] )
            && 'Table1'[Customer ID] = EARLIER ( Table1[Customer ID] )
    )
)

Here is the output.

Capture.PNG

Best  Regards,

Cherry

 

Community Support Team _ Cherry Gao
If this post helps, then please consider Accept it as the solution to help the 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.