<?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 Comparing date column from different tables in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Comparing-date-column-from-different-tables/m-p/3025493#M103145</link>
    <description>&lt;P&gt;Hello,&lt;BR /&gt;I have two different table and need to compare match date column from those tables&amp;nbsp;&lt;BR /&gt;for eg. i want show show platform wise data by match dates from two tables&amp;nbsp;&lt;BR /&gt;please help thank you in advance&amp;nbsp;&lt;BR /&gt;sharing ss of the tables&lt;BR /&gt;&lt;img /&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 17 Jan 2023 10:56:00 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2023-01-17T10:56:00Z</dc:date>
    <item>
      <title>Comparing date column from different tables</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Comparing-date-column-from-different-tables/m-p/3025493#M103145</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;I have two different table and need to compare match date column from those tables&amp;nbsp;&lt;BR /&gt;for eg. i want show show platform wise data by match dates from two tables&amp;nbsp;&lt;BR /&gt;please help thank you in advance&amp;nbsp;&lt;BR /&gt;sharing ss of the tables&lt;BR /&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jan 2023 10:56:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Comparing-date-column-from-different-tables/m-p/3025493#M103145</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-01-17T10:56:00Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing date column from different tables</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Comparing-date-column-from-different-tables/m-p/3025765#M103167</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jan 2023 12:49:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Comparing-date-column-from-different-tables/m-p/3025765#M103167</guid>
      <dc:creator>Mahesh0016</dc:creator>
      <dc:date>2023-01-17T12:49:56Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing date column from different tables</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Comparing-date-column-from-different-tables/m-p/3025778#M103168</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="478098" data-lia-user-login="Mahesh0016" class="lia-mention lia-mention-user"&gt;Mahesh0016&lt;/a&gt;&amp;nbsp; Thank you for your reply ,I wont be able to share file with you but the result which i want is ,I want to show Table(2)counts plarformwise ,so issue which i am facing is&amp;nbsp;&lt;BR /&gt;1.i want to match mobile numbers on both the tables&lt;BR /&gt;2.i want to match call date and created date on both tables&lt;BR /&gt;3.platform data is not available on table 2&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jan 2023 12:56:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Comparing-date-column-from-different-tables/m-p/3025778#M103168</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-01-17T12:56:10Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing date column from different tables</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Comparing-date-column-from-different-tables/m-p/3027463#M103287</link>
      <description>&lt;P&gt;Hi ,&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;According to your description, you wan to compare the three column in both tables.&lt;/P&gt;
&lt;P&gt;Here are the steps you can refer to :&lt;BR /&gt;This is my test data:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;If you need to get the same rows as a table , you can click "New Table" and enter this:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Table = INTERSECT( SELECTCOLUMNS('Table A',"mobile num",[mobile num],"Name",[Name],"call Date",[created Date]) ,'Table B')&lt;/LI-CODE&gt;
&lt;P&gt;Then we can get this :&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you just need the count of this table in the visual , you can create a measure:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure = COUNTROWS( INTERSECT( SELECTCOLUMNS('Table A',"mobile num",[mobile num],"Name",[Name],"call Date",[created Date]) ,'Table B'))&lt;/LI-CODE&gt;
&lt;P&gt;The result is as follows:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for your time and sharing, and thank you for your support and understanding of PowerBI!&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Aniya Zhang&lt;/P&gt;
&lt;P&gt;If this post&amp;nbsp;&lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept&lt;/EM&gt;&lt;/STRONG&gt;&lt;EM&gt; it as the solution&lt;/EM&gt;&amp;nbsp;to help the other members find it more quickly&lt;/P&gt;</description>
      <pubDate>Wed, 18 Jan 2023 03:44:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Comparing-date-column-from-different-tables/m-p/3027463#M103287</guid>
      <dc:creator>v-yueyunzh-msft</dc:creator>
      <dc:date>2023-01-18T03:44:48Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing date column from different tables</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Comparing-date-column-from-different-tables/m-p/3034644#M103851</link>
      <description>&lt;P&gt;Hello ,Thank you for your reply Sharing my dta atable with column names as i cannot send you the data&lt;BR /&gt;I have 2 data tables FF and YF&lt;BR /&gt;following are my requirements&lt;BR /&gt;1.Platformsie(Platform column in FF Table)FF counts and YF Counts&lt;BR /&gt;2.Region and dealersie(columns available in YF Table) FF and YF Counts&lt;/P&gt;&lt;P&gt;Things I have tried&lt;BR /&gt;since there is no common column between two Tables ,I have merged mobile number and date in both the tables and used that column to combine both the tables but as there is duplicationin both the tables it is gicing an many to many relationship error , please let me know thw solution for this&lt;BR /&gt;&lt;BR /&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Jan 2023 17:53:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Comparing-date-column-from-different-tables/m-p/3034644#M103851</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-01-20T17:53:49Z</dc:date>
    </item>
  </channel>
</rss>

