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

A new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.

Reply
fab196
Helper II
Helper II

filter specific result

HI ,

CAN anyone help me with this problem

my data is listed below

what i want :

if i group the data then, if the gruping column have multiple values then it will return null and if the grouping column have same values then it will make the sum of these values.

COUNTRY STATEVALUES
IN MH2
IN MH2
USMI1
USCA3
BZSP4
BZSP5

for example in my data in the country column "IN " IS COuntry where values are in the values column respec. 2,2 because of the same values it should return sum of these values .
and the next line of country "US" there are multiple values which are 1,3 respec. so it should return null value .

how can we do that using dax?

thanks in advance

please help.

 

@parry2k 

@amitchandak 

@Anonymous 

@Anonymous

1 ACCEPTED SOLUTION
parry2k
Super User
Super User

@fab196 try this measure

 

Measure 2 = 
VAR __values = CALCULATE ( DISTINCTCOUNT( Table3[VALUES] ), ALLEXCEPT ( Table3, Table3[COUNTRY ] ) )
RETURN
IF ( __values > 1, BLANK(), SUM ( Table3[VALUES] ) ) 

 

Instead of BLANK() you can also return 0

 

Follow us on LinkedIn

 

Check my latest blog post The Power of Using Calculation Groups with Inactive Relationships (Part 1) (perytus.com) I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!

 

Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.



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.

View solution in original post

2 REPLIES 2
parry2k
Super User
Super User

@fab196 try this measure

 

Measure 2 = 
VAR __values = CALCULATE ( DISTINCTCOUNT( Table3[VALUES] ), ALLEXCEPT ( Table3, Table3[COUNTRY ] ) )
RETURN
IF ( __values > 1, BLANK(), SUM ( Table3[VALUES] ) ) 

 

Instead of BLANK() you can also return 0

 

Follow us on LinkedIn

 

Check my latest blog post The Power of Using Calculation Groups with Inactive Relationships (Part 1) (perytus.com) I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!

 

Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.



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.

how to i get max value for each  group of country from multiple values instead of making sum into the if conidtion

IF ( __values > 1, BLANK(), SUM ( Table3[VALUES] )

means how to i replace sum condition with max value for rach group

Helpful resources

Announcements
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.