Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
Hi all, I'm trying to implement the following login to classify customers in a new column but need some help.
PREMIUM : if all the Cloud products of a customer are 10
PREMIUM ELIGIBLE : if all products (any Product Type) of a customer are in range : >= 5 and <10
NOT ELIGIBLE : if customer has any product < 4 (any Product Type)
PREMIUM PLUS : customers with products > 11 (any Product Type)
| Customer ID | Product Type | Product | Customer Type (desired column) |
| A | Cloud | 10 | Premium |
| A | Cloud | 10 | Premium |
| B | Cloud | 5 | Premium Eligible |
| B | Data Center | 9 | Premium Eligible |
| C | Data Center | 3 | Not Eligible |
| C | Data Center | 9 | Not Eligible |
| D | Cloud | 11 | Premium Plus |
| D | Cloud | 11 | Premium Plus |
Solved! Go to Solution.
Hi,
Try this calculated column formula
=if(CALCULATE(COUNTROWS(Data),FILTER(Data,Data[Customer ID]=EARLIER(Data[Customer ID])&&Data[Product]<4))>0,"Not eligible",if(AND(CALCULATE(COUNTROWS(Data),FILTER(Data,Data[Customer ID]=EARLIER(Data[Customer ID])&&Data[Product Type]="Cloud"))*Data[Product]=CALCULATE(SUM(Data[Product]),FILTER(Data,Data[Customer ID]=EARLIER(Data[Customer ID])&&Data[Product Type]="Cloud"&&Data[Product]=10)),CALCULATE(COUNTROWS(Data),FILTER(Data,Data[Customer ID]=EARLIER(Data[Customer ID])&&Data[Product Type]="Cloud"))>0),"Premium",if(CALCULATE(COUNTROWS(Data),FILTER(Data,Data[Customer ID]=EARLIER(Data[Customer ID])&&Data[Product]>=5&&Data[Product]<10))>0,"Premium Eligible","Premium Plus")))
Hope this helps.
Hi @Anonymous ,
Per your request,the calculated column is as below:
Customer Type =
VAR c =
CALCULATE (
MIN ( 'Table'[Product] ),
ALLEXCEPT ( 'Table', 'Table'[Customer ID] )
)
VAR d =
CALCULATE (
MAX ( 'Table'[Product] ),
ALLEXCEPT ( 'Table', 'Table'[Customer ID] )
)
RETURN
IF (
'Table'[Product] = 10,
"PREMIUM",
IF (
c >= 5
&& d < 10,
"PREMIUM ELIGIBLE",
IF (
c <= 4
&& d > 4,
"NOT ELIGIBLE ",
IF ( d >= 11, "PREMIUM PLUS ", BLANK () )
)
)
)
Finally you will see:
For the related .pbix file,pls click here.
Hi @Anonymous ,
Per your request,the calculated column is as below:
Customer Type =
VAR c =
CALCULATE (
MIN ( 'Table'[Product] ),
ALLEXCEPT ( 'Table', 'Table'[Customer ID] )
)
VAR d =
CALCULATE (
MAX ( 'Table'[Product] ),
ALLEXCEPT ( 'Table', 'Table'[Customer ID] )
)
RETURN
IF (
'Table'[Product] = 10,
"PREMIUM",
IF (
c >= 5
&& d < 10,
"PREMIUM ELIGIBLE",
IF (
c <= 4
&& d > 4,
"NOT ELIGIBLE ",
IF ( d >= 11, "PREMIUM PLUS ", BLANK () )
)
)
)
Finally you will see:
For the related .pbix file,pls click here.
Hi,
Try this calculated column formula
=if(CALCULATE(COUNTROWS(Data),FILTER(Data,Data[Customer ID]=EARLIER(Data[Customer ID])&&Data[Product]<4))>0,"Not eligible",if(AND(CALCULATE(COUNTROWS(Data),FILTER(Data,Data[Customer ID]=EARLIER(Data[Customer ID])&&Data[Product Type]="Cloud"))*Data[Product]=CALCULATE(SUM(Data[Product]),FILTER(Data,Data[Customer ID]=EARLIER(Data[Customer ID])&&Data[Product Type]="Cloud"&&Data[Product]=10)),CALCULATE(COUNTROWS(Data),FILTER(Data,Data[Customer ID]=EARLIER(Data[Customer ID])&&Data[Product Type]="Cloud"))>0),"Premium",if(CALCULATE(COUNTROWS(Data),FILTER(Data,Data[Customer ID]=EARLIER(Data[Customer ID])&&Data[Product]>=5&&Data[Product]<10))>0,"Premium Eligible","Premium Plus")))
Hope this helps.
@Anonymous hey isn't we did similar in other post?
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 53 | |
| 39 | |
| 35 | |
| 19 | |
| 18 |
| User | Count |
|---|---|
| 73 | |
| 73 | |
| 38 | |
| 35 | |
| 26 |