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

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
Anonymous
Not applicable

Replace repeating/duplicate values with null/blank()

How do I replace all but one repeating/duplicate values in overtime column with null? There are no unique columns to cross reference to.

Thanks.

 

https://i.imgur.com/SELU4wz.png

https://i.ibb.co/9sfJrC2/Untitled.png

1 ACCEPTED SOLUTION

Oh, well if you had an index it would look something along the lines of:

 

New Column =

  VAR __Value = 'Table'[Overtime]

  VAR __CurrentIndex = 'Table'[Index]

RETURN

  IF(MAXX(FILTER('Table',[Index] = __CurrentIndex - 1),[Overtime])=__Value,BLANK(),__Value)



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

4 REPLIES 4
rohitpoojari
Helper I
Helper I

Can this be done in Query Editor? replacing the subsequent duplicated value with null

Greg_Deckler
Community Champion
Community Champion

Create an Index column in Power Query editor. Now you have something to reference.



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...
Anonymous
Not applicable

I am new to power BI. What would the DAX formula for replacing duplicate values look like?

Oh, well if you had an index it would look something along the lines of:

 

New Column =

  VAR __Value = 'Table'[Overtime]

  VAR __CurrentIndex = 'Table'[Index]

RETURN

  IF(MAXX(FILTER('Table',[Index] = __CurrentIndex - 1),[Overtime])=__Value,BLANK(),__Value)



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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