<?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: Filtering in Desktop</title>
    <link>https://community.fabric.microsoft.com/t5/Desktop/Filtering/m-p/277367#M123743</link>
    <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What result are you expecting?&lt;/P&gt;</description>
    <pubDate>Fri, 13 Oct 2017 00:07:11 GMT</pubDate>
    <dc:creator>Ashish_Mathur</dc:creator>
    <dc:date>2017-10-13T00:07:11Z</dc:date>
    <item>
      <title>Filtering</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Filtering/m-p/277182#M123643</link>
      <description>&lt;P&gt;I have a model with 3 columns Buy/Sell (which a text column), Amount (Integer) and Date (Date). I need to be able to subtract sells from buys over a variety of time periods. I can't work out if this should be done as a new calculated column or measure.&amp;nbsp;&amp;nbsp;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Oct 2017 16:45:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Filtering/m-p/277182#M123643</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-10-12T16:45:22Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Filtering/m-p/277284#M123695</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A measure should work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I assume all the sell records have a minus sign so ...&lt;BR /&gt;&lt;BR /&gt;Measure1 = SUM(TableName[Amount])&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;should work&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you create a visual and place the date in one axis or column or whatever visual you choose and in the values of that visual you place Measure1 should work with no problems.&lt;BR /&gt;&lt;BR /&gt;Hope that helps&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Vicente&lt;/P&gt;</description>
      <pubDate>Thu, 12 Oct 2017 20:16:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Filtering/m-p/277284#M123695</guid>
      <dc:creator>vcastello</dc:creator>
      <dc:date>2017-10-12T20:16:03Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Filtering/m-p/277367#M123743</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What result are you expecting?&lt;/P&gt;</description>
      <pubDate>Fri, 13 Oct 2017 00:07:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Filtering/m-p/277367#M123743</guid>
      <dc:creator>Ashish_Mathur</dc:creator>
      <dc:date>2017-10-13T00:07:11Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Filtering/m-p/277703#M123895</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;,&lt;BR /&gt;&lt;BR /&gt;Please post your expected result based on the sample table, so that we can share the workaround which is close to your requirement.&lt;BR /&gt;&lt;BR /&gt;Best Regards,&lt;BR /&gt;Angelia&lt;/P&gt;</description>
      <pubDate>Fri, 13 Oct 2017 08:38:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Filtering/m-p/277703#M123895</guid>
      <dc:creator>v-huizhn-msft</dc:creator>
      <dc:date>2017-10-13T08:38:11Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Filtering/m-p/277824#M123953</link>
      <description>&lt;P&gt;I am trying to filter all buys with dates into a measure and all sells into a measure so that I can subtract sells from buys over anytime period.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Oct 2017 10:47:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Filtering/m-p/277824#M123953</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-10-13T10:47:15Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Filtering/m-p/277827#M123956</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;=CALCULATE(SUM(Data[Amount]),Data[Buy/Sell]="Buy")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;=CALCULATE(SUM(Data[Amount]),Data[Buy/Sell]="Sell")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Oct 2017 11:03:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Filtering/m-p/277827#M123956</guid>
      <dc:creator>Ashish_Mathur</dc:creator>
      <dc:date>2017-10-13T11:03:34Z</dc:date>
    </item>
  </channel>
</rss>

