<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Replace repeating/duplicate values with null/blank() in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Replace-repeating-duplicate-values-with-null-blank/m-p/1082455#M15343</link>
    <description>&lt;P&gt;How do I replace all but one repeating/duplicate values in &lt;STRONG&gt;overtime&lt;/STRONG&gt; column with null? There are no unique columns to cross reference to.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://i.imgur.com/SELU4wz.png" target="_blank"&gt;https://i.imgur.com/SELU4wz.png&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://i.ibb.co/9sfJrC2/Untitled.png" target="_blank"&gt;https://i.ibb.co/9sfJrC2/Untitled.png&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Sat, 09 May 2020 19:51:21 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2020-05-09T19:51:21Z</dc:date>
    <item>
      <title>Replace repeating/duplicate values with null/blank()</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Replace-repeating-duplicate-values-with-null-blank/m-p/1082455#M15343</link>
      <description>&lt;P&gt;How do I replace all but one repeating/duplicate values in &lt;STRONG&gt;overtime&lt;/STRONG&gt; column with null? There are no unique columns to cross reference to.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://i.imgur.com/SELU4wz.png" target="_blank"&gt;https://i.imgur.com/SELU4wz.png&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://i.ibb.co/9sfJrC2/Untitled.png" target="_blank"&gt;https://i.ibb.co/9sfJrC2/Untitled.png&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 09 May 2020 19:51:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Replace-repeating-duplicate-values-with-null-blank/m-p/1082455#M15343</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-05-09T19:51:21Z</dc:date>
    </item>
    <item>
      <title>Re: Replace repeating/duplicate values with null/blank()</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Replace-repeating-duplicate-values-with-null-blank/m-p/1082464#M15345</link>
      <description>&lt;P&gt;Create an Index column in Power Query editor. Now you have something to reference.&lt;/P&gt;</description>
      <pubDate>Sat, 09 May 2020 20:02:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Replace-repeating-duplicate-values-with-null-blank/m-p/1082464#M15345</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2020-05-09T20:02:28Z</dc:date>
    </item>
    <item>
      <title>Re: Replace repeating/duplicate values with null/blank()</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Replace-repeating-duplicate-values-with-null-blank/m-p/1082483#M15350</link>
      <description>&lt;P&gt;I am new to power BI. What would the DAX formula for replacing duplicate values look like?&lt;/P&gt;</description>
      <pubDate>Sat, 09 May 2020 20:22:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Replace-repeating-duplicate-values-with-null-blank/m-p/1082483#M15350</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-05-09T20:22:06Z</dc:date>
    </item>
    <item>
      <title>Re: Replace repeating/duplicate values with null/blank()</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Replace-repeating-duplicate-values-with-null-blank/m-p/1082557#M15354</link>
      <description>&lt;P&gt;Oh, well if you had an index it would look something along the lines of:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;New Column =&lt;/P&gt;
&lt;P&gt;&amp;nbsp; VAR __Value = 'Table'[Overtime]&lt;/P&gt;
&lt;P&gt;&amp;nbsp; VAR __CurrentIndex = 'Table'[Index]&lt;/P&gt;
&lt;P&gt;RETURN&lt;/P&gt;
&lt;P&gt;&amp;nbsp; IF(MAXX(FILTER('Table',[Index] = __CurrentIndex - 1),[Overtime])=__Value,BLANK(),__Value)&lt;/P&gt;</description>
      <pubDate>Sat, 09 May 2020 23:35:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Replace-repeating-duplicate-values-with-null-blank/m-p/1082557#M15354</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2020-05-09T23:35:21Z</dc:date>
    </item>
    <item>
      <title>Re: Replace repeating/duplicate values with null/blank()</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Replace-repeating-duplicate-values-with-null-blank/m-p/4254066#M168510</link>
      <description>&lt;P&gt;Can this be done in Query Editor? replacing the subsequent duplicated value with null&lt;/P&gt;</description>
      <pubDate>Wed, 23 Oct 2024 09:30:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Replace-repeating-duplicate-values-with-null-blank/m-p/4254066#M168510</guid>
      <dc:creator>rohitpoojari</dc:creator>
      <dc:date>2024-10-23T09:30:16Z</dc:date>
    </item>
  </channel>
</rss>

