<?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 Re: Calculated column. 3 different tables IF/ CASE statement in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculated-column-3-different-tables-IF-CASE-statement/m-p/3024418#M103056</link>
    <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt; , You have bring other column this table using one of the 4 ways. You can bring them in var of the column &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;refer 4 ways (related, relatedtable, lookupvalue, sumx/minx/maxx with filter) to copy data from one table to another&lt;BR /&gt;&lt;A href="https://www.youtube.com/watch?v=Wu1mWxR23jU" target="_blank"&gt;https://www.youtube.com/watch?v=Wu1mWxR23jU&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://www.youtube.com/watch?v=czNHt7UXIe8" target="_blank"&gt;https://www.youtube.com/watch?v=czNHt7UXIe8&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The syntax of if in power bi Dax id&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If(&amp;lt;Condition&amp;gt;, &amp;lt;Then&amp;gt;, &amp;lt;else&amp;gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can use switch&lt;/P&gt;
&lt;P&gt;Switch-Case statement of #PowerBI: &lt;A href="https://www.youtube.com/watch?v=gelJWktlR80&amp;amp;list=PLPaNVDMhUXGaaqV92SBD5X2hk3TMNlHhb&amp;amp;index=56" target="_blank"&gt;https://www.youtube.com/watch?v=gelJWktlR80&amp;amp;list=PLPaNVDMhUXGaaqV92SBD5X2hk3TMNlHhb&amp;amp;index=56&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 17 Jan 2023 01:21:43 GMT</pubDate>
    <dc:creator>amitchandak</dc:creator>
    <dc:date>2023-01-17T01:21:43Z</dc:date>
    <item>
      <title>Calculated column. 3 different tables IF/ CASE statement</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculated-column-3-different-tables-IF-CASE-statement/m-p/3024403#M103055</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to create a calculated column between 3 different tables.&amp;nbsp;All 3 tables are connected on a filed called 'ITEMID' field.&lt;/P&gt;&lt;P&gt;Does someone know how to write it correctly please?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;IF 'Staging'[CODE]='ITEM_DIVERT'[CODE] AND 'Staging'[CODE]='KILLS_DISPOSITION'[CODE] THEN 'Match between 3 tables'&lt;BR /&gt;IF 'Staging'[CODE]='ITEM_DIVERT'[CODE] AND 'Staging'[CODE] != 'KILLS_DISPOSITION'[CODE] THEN 'Match between Staging &amp;amp; Item_Divert'&lt;BR /&gt;IF 'Staging'[CODE]!='ITEM_DIVERT'[CODE] AND 'Staging'[CODE] = 'KILLS_DISPOSITION'[CODE] THEN 'Match between Staging &amp;amp; Divert_Code'&lt;BR /&gt;IF 'Staging'[CODE]!='ITEM_DIVERT'[CODE] AND 'Staging'[CODE] != 'KILLS_DISPOSITION'[CODE] THEN 'No match'&lt;BR /&gt;END AS 'Comparison'&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jan 2023 04:41:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculated-column-3-different-tables-IF-CASE-statement/m-p/3024403#M103055</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-01-17T04:41:51Z</dc:date>
    </item>
    <item>
      <title>Re: Calculated column. 3 different tables IF/ CASE statement</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculated-column-3-different-tables-IF-CASE-statement/m-p/3024418#M103056</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt; , You have bring other column this table using one of the 4 ways. You can bring them in var of the column &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;refer 4 ways (related, relatedtable, lookupvalue, sumx/minx/maxx with filter) to copy data from one table to another&lt;BR /&gt;&lt;A href="https://www.youtube.com/watch?v=Wu1mWxR23jU" target="_blank"&gt;https://www.youtube.com/watch?v=Wu1mWxR23jU&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://www.youtube.com/watch?v=czNHt7UXIe8" target="_blank"&gt;https://www.youtube.com/watch?v=czNHt7UXIe8&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The syntax of if in power bi Dax id&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If(&amp;lt;Condition&amp;gt;, &amp;lt;Then&amp;gt;, &amp;lt;else&amp;gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can use switch&lt;/P&gt;
&lt;P&gt;Switch-Case statement of #PowerBI: &lt;A href="https://www.youtube.com/watch?v=gelJWktlR80&amp;amp;list=PLPaNVDMhUXGaaqV92SBD5X2hk3TMNlHhb&amp;amp;index=56" target="_blank"&gt;https://www.youtube.com/watch?v=gelJWktlR80&amp;amp;list=PLPaNVDMhUXGaaqV92SBD5X2hk3TMNlHhb&amp;amp;index=56&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jan 2023 01:21:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculated-column-3-different-tables-IF-CASE-statement/m-p/3024418#M103056</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2023-01-17T01:21:43Z</dc:date>
    </item>
    <item>
      <title>Re: Calculated column. 3 different tables IF/ CASE statement</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculated-column-3-different-tables-IF-CASE-statement/m-p/3024711#M103079</link>
      <description>&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jan 2023 04:42:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculated-column-3-different-tables-IF-CASE-statement/m-p/3024711#M103079</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-01-17T04:42:13Z</dc:date>
    </item>
  </channel>
</rss>

