<?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 conditional column for different entity in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/conditional-column-for-different-entity/m-p/3162454#M113605</link>
    <description>&lt;P&gt;hi , community we have a conditon in which we need to create a calulated column using dax for vendor ,agent ,party .we have to create a bucket for agent ,party and agent&lt;img /&gt;&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;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;need to create a calculated column containg agent ,vendor, party&lt;/P&gt;</description>
    <pubDate>Thu, 30 Mar 2023 05:25:42 GMT</pubDate>
    <dc:creator>manishsalanke</dc:creator>
    <dc:date>2023-03-30T05:25:42Z</dc:date>
    <item>
      <title>conditional column for different entity</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/conditional-column-for-different-entity/m-p/3162454#M113605</link>
      <description>&lt;P&gt;hi , community we have a conditon in which we need to create a calulated column using dax for vendor ,agent ,party .we have to create a bucket for agent ,party and agent&lt;img /&gt;&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;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;need to create a calculated column containg agent ,vendor, party&lt;/P&gt;</description>
      <pubDate>Thu, 30 Mar 2023 05:25:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/conditional-column-for-different-entity/m-p/3162454#M113605</guid>
      <dc:creator>manishsalanke</dc:creator>
      <dc:date>2023-03-30T05:25:42Z</dc:date>
    </item>
    <item>
      <title>Re: conditional column for different entity</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/conditional-column-for-different-entity/m-p/3162537#M113612</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="510643" data-lia-user-login="manishsalanke" class="lia-mention lia-mention-user"&gt;manishsalanke&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;The requirement is not clear. Perhaps you can clarify further with examples.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Mar 2023 06:30:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/conditional-column-for-different-entity/m-p/3162537#M113612</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-03-30T06:30:12Z</dc:date>
    </item>
    <item>
      <title>Re: conditional column for different entity</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/conditional-column-for-different-entity/m-p/3162609#M113620</link>
      <description>&lt;P&gt;actully we have one column which contains names and now we need to create a new column which contains values for party ,vendor ,agent&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Mar 2023 06:54:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/conditional-column-for-different-entity/m-p/3162609#M113620</guid>
      <dc:creator>manishsalanke</dc:creator>
      <dc:date>2023-03-30T06:54:37Z</dc:date>
    </item>
    <item>
      <title>Re: conditional column for different entity</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/conditional-column-for-different-entity/m-p/3162867#M113646</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="510643" data-lia-user-login="manishsalanke" class="lia-mention lia-mention-user"&gt;manishsalanke&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;I Suppose you have that column in the main table and you have 3 lists (&lt;SPAN&gt;vendor ,agent ,party) in 3 separate&amp;nbsp;tables. As follows:&lt;BR /&gt;'Table'[Column]&lt;BR /&gt;Vendors[Vendor]&lt;BR /&gt;Agents[Agent]&lt;BR /&gt;Parties[Party]&lt;BR /&gt;&lt;BR /&gt;The new column would be&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;NewColumn =
SWITCH (
    TRUE (),
    'Table'[Column] IN VALUES ( Agents[Agent] ), "Agent",
    'Table'[Column] IN VALUES ( Vendors[Vendor] ), "Vendor",
    'Table'[Column] IN VALUES ( Parties[Party] ), "Party"
)&lt;/LI-CODE&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Mar 2023 08:36:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/conditional-column-for-different-entity/m-p/3162867#M113646</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-03-30T08:36:17Z</dc:date>
    </item>
  </channel>
</rss>

