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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
Anonymous
Not applicable

How to find which customers are in Both Categories ?

Hi All Gurus,

This site really helping me on my 1st steps of DAX.

 

My question is, is there any way to find which customers are in both Groups and the total?

 

Example ,  A Group :  UserId:   1, 3 , 5 , 6 

                 B Group :   UserID:  3 , 5, 8  

            BothGroup :  3, 5 

 

I need to find out how to achieve Result BothGroup which is 3, 5 because these customers are in Both Group.

Thanks in advance

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

@Anonymous -

Store each group in a variable and then try the NATURALINNERJOIN orINTERSECT functions. Something like:

 

var a = <customer list 1>
var b = <customer list 2>
var c = NATURALINNERJOIN(a,b)

Cheers!

Nathan

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

@Anonymous -

Store each group in a variable and then try the NATURALINNERJOIN orINTERSECT functions. Something like:

 

var a = <customer list 1>
var b = <customer list 2>
var c = NATURALINNERJOIN(a,b)

Cheers!

Nathan

Anonymous
Not applicable

Thanks Nathan

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

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.