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

How to segment customers by number of transactions by a new table

Hi,

 

I would like to know how to create this auxiliar table where I have a count of each unique customers displayed by how many times they completed a transaction. 

 

Many thanks in advance,

Rui

RMSLUIS_0-1668099789551.jpeg

 

 

1 ACCEPTED SOLUTION

Hi, @RMSLUIS 

 

Column:

Segment = SWITCH(True(),
[Transaction]>=4,"High",
[Transaction]<4&&[Transaction]>=2,"Medium",
[Transaction]<=1,"Low")

vzhangti_0-1668391141790.png

vzhangti_1-1668391169193.png

 

Best Regards,

Community Support Team _Charlotte

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

4 REPLIES 4
zerotyper
Frequent Visitor

@v-zhangti  I'd like to borrow your file, thanks!

@RMSLUIS 

1st, create a table via the below code :

Segment = 
SELECTCOLUMNS(
   { 
       ( "High", 1  ) ,
       ( "Medium" , 2 ) ,
       ( "Low" ,3 )
   } ,
    "Segment" , [Value1] , "Orderby" , [Value2]
)

2nd, create a measure

# Customers = 
VAR _customerTbl =
    ADDCOLUMNS (
        VALUES ( 'Transaction'[Customer ID] ),
        "@Transaction",
            CALCULATE (
                DISTINCTCOUNT ( 'Transaction'[Transaction ID] )
            )
    )
VAR _Segment =
    MAX ( 'Segment'[Segment] )
RETURN
IF(
    HASONEVALUE( 'Segment'[Segment] ) ,
    SWITCH (
        TRUE (),
        _Segment = "High",
            COUNTROWS (
                FILTER (
                    _customerTbl,
                    [@Transaction] >= 4
                )
            ),
        _Segment = "Medium",
            COUNTROWS (
                FILTER (
                    _customerTbl,
                    [@Transaction] >= 2
                        && [@Transaction] < 4
                )
            ),
        COUNTROWS (
            FILTER (
                _customerTbl,
                [@Transaction] < 2
            )
        )
    ),
    COUNTROWS( _customerTbl )
)

3rd, put the column Segment[Segment] and measure into Matrix.

zerotyper_0-1668168073091.png

 

 

v-zhangti
Community Support
Community Support

Hi, @RMSLUIS 

 

You can try the following methods.

Table:

Table 2 =
SUMMARIZE (
    'Table',
    'Table'[Customer ID],
    "Transaction",
        CALCULATE (
            COUNT ( 'Table'[Customer ID] ),
            ALLEXCEPT ( 'Table', 'Table'[Customer ID] )
        )
)

Column:

Customer = CALCULATE(COUNT('Table 2'[Transaction]),ALLEXCEPT('Table 2','Table 2'[Transaction]))

vzhangti_0-1668132792000.png

Result:

vzhangti_1-1668132814603.png

Is this the result you expect?

Best Regards,

Community Support Team _Charlotte

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

Hi,

 

It works perfectly (by table).

If I want in the same table to add a new collum where I segment the customers by frequency. I mean like this....

RMSLUIS_1-1668162501630.png

Thank you very much!

Rui

 

 

 

Hi, @RMSLUIS 

 

Column:

Segment = SWITCH(True(),
[Transaction]>=4,"High",
[Transaction]<4&&[Transaction]>=2,"Medium",
[Transaction]<=1,"Low")

vzhangti_0-1668391141790.png

vzhangti_1-1668391169193.png

 

Best Regards,

Community Support Team _Charlotte

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.