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
DimaMD
Solution Sage
Solution Sage

RFM segments

Hello community!

 

I've made RFM analysis in table. Score of RFM is calculated in real time with mesure.

 

I have another table with scores and names of segments. so every combined RFM score has it's own name.

 

The goal is to connect 2 tables so we can see name of segment in every customer score in table 1. But i can not do so because RFM score is calculated as mesure, and I can't figure out how to connect table with name of segments with main table. 

 

Please help me to solve this task. 

 

Example of PBIX file will be in attachment. 


__________________________________________

Thank you for your like and decision

__________________________________________

Greetings from Ukraine

To help me grow PayPal: embirddima@gmail.com
1 ACCEPTED SOLUTION

HI, @HotChilli 
thanks for the tip, yesterday I managed to figure it out myself and write such a measure.
I think someone will find this measure useful

 

Segment RFM = 
VAR _tab = 
SELECTCOLUMNS(
    VALUES('Sales'[ID_USER]),
    "RFM_Seg",[RFM] )
VAR _Seg =
SELECTCOLUMNS(_tab,
    "#RFM_S",
    LOOKUPVALUE('Segment'[Segment],Segment[ID_RFM],[RFM_Seg]))
return
MAXX( _Seg,[#RFM_S])

 

Screenshot_7.jpg


__________________________________________

Thank you for your like and decision

__________________________________________

Greetings from Ukraine

To help me grow PayPal: embirddima@gmail.com

View solution in original post

10 REPLIES 10
TapiaMercasid
Frequent Visitor

HI @DimaMD I'm having some issues with an RFM I'm trying to create from scratch. I see you are pretty knowledgeable. can you help me with this?
https://community.fabric.microsoft.com/t5/Desktop/RFM-Score-and-filtering-different-categories/m-p/3... 

Nura_Berdy
Frequent Visitor

Hi Dima,

 

I am had the same issue. But I am wondering if you can share how you segments table looks like. I am still having issues even after connecting segments tbale with my RFm scores. Thank you! 

 

Best,

 

Nura 

Hi @Nura_Berdy  save the file, I think you will see everything there
example file pbix

greetings from Ukraine


__________________________________________

Thank you for your like and decision

__________________________________________

Greetings from Ukraine

To help me grow PayPal: embirddima@gmail.com

Hi Dima,

Thank you very much for sending the above file. It was very useful, however I am still getting the same error that you had. Also, after reviewing your file I realised that you have the same segment name for 

each RFM score. Did you happen to fix that? Thank you! 

 RFMRFM

Hi @Nura_Berdy , Can you provide a sample of your data?


__________________________________________

Thank you for your like and decision

__________________________________________

Greetings from Ukraine

To help me grow PayPal: embirddima@gmail.com
v-robertq-msft
Community Support
Community Support

Hi, 

Glad to hear that you have solved your problem by yourself, would you like to mark your own reply as a solution so that others can learn from it too?

Thanks in advance!

How to Get Your Question Answered Quickly 

 

Best Regards,

Community Support Team _Robert Qin

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

HotChilli
Super User
Super User

Are you looking to return text from Segment column dependent on exact match with RFM measure with of ID_RFM column?

If yes, create a measure, put RFM in a variable and use LOOKUPVALUE to return Segment

HI, @HotChilli 
thanks for the tip, yesterday I managed to figure it out myself and write such a measure.
I think someone will find this measure useful

 

Segment RFM = 
VAR _tab = 
SELECTCOLUMNS(
    VALUES('Sales'[ID_USER]),
    "RFM_Seg",[RFM] )
VAR _Seg =
SELECTCOLUMNS(_tab,
    "#RFM_S",
    LOOKUPVALUE('Segment'[Segment],Segment[ID_RFM],[RFM_Seg]))
return
MAXX( _Seg,[#RFM_S])

 

Screenshot_7.jpg


__________________________________________

Thank you for your like and decision

__________________________________________

Greetings from Ukraine

To help me grow PayPal: embirddima@gmail.com

Hello @DimaMD 
Were ALL the RFM fields R(Values), R(Score), F(Values), F(Score), M(Values), and M(Scores) created completely using just measures, or some were created using calculated columns?

Would appreciate it so much if you can share the pbix please with me, as I'm trying to find a way to do it all based just on measures, but unfortunately I found that all sources are using calculated tables and columns.

 

Best regards,

Simon

Hi @y5famfnatudu Your File


__________________________________________

Thank you for your like and decision

__________________________________________

Greetings from Ukraine

To help me grow PayPal: embirddima@gmail.com

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.

Top Solution Authors