Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

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

Reply
Anonymous
Not applicable

Logic help needed, conditional IF

Hello all gurus, I am new to PowerBI and need some help! 

I have a database like below: 

 

Capture.JPG

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: 

 

Capture2.JPG

Appreciated any advice, 

 

1 ACCEPTED SOLUTION
v-jiascu-msft
Microsoft Employee
Microsoft Employee

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,

Community Support Team _ Dale
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

2 REPLIES 2
v-jiascu-msft
Microsoft Employee
Microsoft Employee

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,

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

Thank you , it works! Much appreciated your help!

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.