<?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 SAME INVOICE NO. replicate the type if blank in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SAME-INVOICE-NO-replicate-the-type-if-blank/m-p/4242380#M167956</link>
    <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;is there a way to copy the trans_type to the blank value using dax?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;sample&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 15 Oct 2024 03:39:52 GMT</pubDate>
    <dc:creator>Easley08</dc:creator>
    <dc:date>2024-10-15T03:39:52Z</dc:date>
    <item>
      <title>SAME INVOICE NO. replicate the type if blank</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SAME-INVOICE-NO-replicate-the-type-if-blank/m-p/4242380#M167956</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;is there a way to copy the trans_type to the blank value using dax?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;sample&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Oct 2024 03:39:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SAME-INVOICE-NO-replicate-the-type-if-blank/m-p/4242380#M167956</guid>
      <dc:creator>Easley08</dc:creator>
      <dc:date>2024-10-15T03:39:52Z</dc:date>
    </item>
    <item>
      <title>Re: SAME INVOICE NO. replicate the type if blank</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SAME-INVOICE-NO-replicate-the-type-if-blank/m-p/4242403#M167959</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I am not sure how your semantic model looks like, but I tried to create a sample pbix file like below.&lt;BR /&gt;Please check the&amp;nbsp; below picture and the attached pbix file.&lt;/P&gt;
&lt;P&gt;It is for creating a new column.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;trans_type_fill CC = 
VAR _CurrentRowInvoice = data[invoice_no]
VAR _CurrentRowDueDate = data[due_date]
VAR _t =
    FILTER (
        data,
        data[invoice_no] = _CurrentRowInvoice
            &amp;amp;&amp;amp; data[due_date] = _CurrentRowDueDate
            &amp;amp;&amp;amp; data[net_amount] == 0
    )
VAR _transtype =
    SUMMARIZE (
        _t,
        data[trans_type]
    )
RETURN
    _transtype
&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 15 Oct 2024 03:58:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SAME-INVOICE-NO-replicate-the-type-if-blank/m-p/4242403#M167959</guid>
      <dc:creator>Jihwan_Kim</dc:creator>
      <dc:date>2024-10-15T03:58:38Z</dc:date>
    </item>
  </channel>
</rss>

