Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hello , i have the following 3 tables:
Customer
| cst_code | cst_id_surrogate | FirstN | LastN |
| 1 | 151515 | Mike | James |
| 1 | 151516 | Mike | James |
| 2 | 161617 | Maria | Kallas |
Relational
| cst_id_surrogate | plc_id_surrogate |
| 151515 | 10101 |
| 151516 | 10102 |
| 161617 | 10103 |
Policy
| plc_ID | plc_id_surrogate | Class |
| 10001 | 10101 | Health |
| 10001 | 10102 | Life |
| 10002 | 10103 | Health |
The requirement is to create a measure that can be used as filter in order to return only they customer who dont have Class = 'Life'
In this specific scenario i expect only cst_code =2 only as a result.
Thanks in advance
create a measure
Measure = CALCULATE(COUNTROWS(Policy),FILTER(Policy,Policy[Class]="Life"))
and add that measure to filter
pls see the attachment below
Proud to be a Super User!
Thank you for your reply, but the requirement describes the capability to return customer_ids WITHOUT having specific values in a field.
sry, not understand, what do you mean return id without having specific values. I think I only displayed customer id
Proud to be a Super User!
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.