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

Get certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now

Reply
AudreyPowerBI
New Member

If Duplicate Value In Column vs Distinct Occurrence

Good evening Power BI Community!

 

In the Query Editor, I'm trying to create a new custom column to do the following:

If the data in Column A only occurs once in that column, then show me what is in Column D, if the data point in Column A has a duplication in that column, then produce string "Multiple".

 

Note limitation: Removing duplicates in Column A is not an option in our case.

 

What would you suggest I use as the DAX formula here?

 

Please advise? Thank you kindly,

Audrey

1 ACCEPTED SOLUTION
AudreyPowerBI
New Member

Hello and thank you everyone for your late night help!

It was definitely much appreciated. 😄

 

In case you're wondering, the approach I took that did the trick was as follows:

 

SOLUTION = IF (CALCULATE (HASONEVALUE(SOLUTION[COLUMNB]),ALLEXCEPT(SOLUTION,SOLUTION[COLUMNA]) )=TRUE,SOLUTION[COLUMND],"Multiple")

 

Thank you all and I hope you have a lovely weekend!

Audrey

View solution in original post

5 REPLIES 5
AudreyPowerBI
New Member

Hello and thank you everyone for your late night help!

It was definitely much appreciated. 😄

 

In case you're wondering, the approach I took that did the trick was as follows:

 

SOLUTION = IF (CALCULATE (HASONEVALUE(SOLUTION[COLUMNB]),ALLEXCEPT(SOLUTION,SOLUTION[COLUMNA]) )=TRUE,SOLUTION[COLUMND],"Multiple")

 

Thank you all and I hope you have a lovely weekend!

Audrey

Vvelarde
Community Champion
Community Champion

@AudreyPowerBI

 

Hi,in Query Editor you can do it following these steps:

 

count.gif

 

Let mw know if you need more help

 

Regards

 

Victor

Lima - Peru




Lima - Peru
Ashish_Mathur
Super User
Super User

Hi,

 

Try this

 

=IF(CALCULATE(COUNTROWS(Data),FILTER(Data,Data[Heading1]=EARLIER(Data[Heading1])))>1,"Multiple",Data[Heading])

 

I have assumed that the Table name is Data and heading of column A id Heading1.  Also, the data type of entries in the heading column has been assumed as text.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
TomMartens
Super User
Super User

Hey,

 

this DAX statement creates a calculated column in your table

var whatsincolumnD =  'yourtable'[ColumnD]
return
IF(
CALCULATE(
COUNTROWS('yourtable')
,ALLEXCEPT('yourtable', 'yourtable'[ColumnA])
) >1
,whatsincolumnD
,"Multiple"
)

Hopefully this is what you are looking for

 

Regards

Tom

 



Did I answer your question? Mark my post as a solution, this will help others!

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany

Hello Tom,

 

Thank you for taking the time to respond!

I'm not familiar with DAX at all but am wondering, should I still use this formula even though I'm not trying to calculate anything?

 

Audrey

 

Helpful resources

Announcements
November Carousel

Fabric Community Update - November 2024

Find out what's new and trending in the Fabric Community.

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.

Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

Check out the November 2024 Power BI update to learn about new features.