We'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
Hello all gurus, I am new to PowerBI and need some help!
I have a database like below:
I need some help to figure out a DAX for this logic: if a customer_id was identified as an "NSU Customer", then that customer_id is a customer regardless of their charge_plan.
So eventually I want to get to a table like this:
Appreciated any advice,
Solved! Go to Solution.
Hi @Anonymous ,
Try this one as a measure, please.
Measure = IF ( "NSU Customer" IN CALCULATETABLE ( VALUES ( 'table1'[NSU plan group] ), ALLEXCEPT ( 'table1', 'table1'[customer_id] ) ), "Customer", "Not Customer" )
Best Regards,
Hi @Anonymous ,
Try this one as a measure, please.
Measure = IF ( "NSU Customer" IN CALCULATETABLE ( VALUES ( 'table1'[NSU plan group] ), ALLEXCEPT ( 'table1', 'table1'[customer_id] ) ), "Customer", "Not Customer" )
Best Regards,
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.
| User | Count |
|---|---|
| 56 | |
| 40 | |
| 35 | |
| 18 | |
| 18 |
| User | Count |
|---|---|
| 69 | |
| 64 | |
| 38 | |
| 34 | |
| 23 |