<?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: Page level or report level filter in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Page-level-or-report-level-filter/m-p/19681#M281</link>
    <description>&lt;P&gt;Hi Greg,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks for replying, but i am not looking only one selection, I am looking atleast one selection. When I created a new column with given code, but when i m going to the report, value is not populating in that, it is remaining blank, even if i select year and any state.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 19 Feb 2016 07:33:18 GMT</pubDate>
    <dc:creator>sagarpsali</dc:creator>
    <dc:date>2016-02-19T07:33:18Z</dc:date>
    <item>
      <title>Page level or report level filter</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Page-level-or-report-level-filter/m-p/19453#M262</link>
      <description>&lt;P&gt;Hi All, I am facing one issue. Year and state as my main driver/field/column, but when nothing is selected, in report, graphs showing some values, don't know which values it is taking.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have to implement a&amp;nbsp;scenario, if year and state is not selected, then none will show in to the report. And once selected year and then either state, it need to show graph/chart, related to those value.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How I can implement this? Can someone help me.&lt;/P&gt;</description>
      <pubDate>Thu, 18 Feb 2016 02:49:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Page-level-or-report-level-filter/m-p/19453#M262</guid>
      <dc:creator>sagarpsali</dc:creator>
      <dc:date>2016-02-18T02:49:35Z</dc:date>
    </item>
    <item>
      <title>Re: Page level or report level filter</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Page-level-or-report-level-filter/m-p/19461#M263</link>
      <description>&lt;P&gt;Wrap all your base measures in the following:&lt;/P&gt;&lt;PRE&gt;// DAX
// Measure template
MyNewMeasure =
IF(
    HASONEVALUE( 'DimDate'[Year] ) 
        &amp;amp;&amp;amp; HASONEVALUE( 'DimGeography'[State] )
    ,&amp;lt;your old measure definition here&amp;gt;
    ,BLANK()
)&lt;/PRE&gt;&lt;P&gt;You're checking for the existence of exactly one unique value for each of [Year] and [State]. When this is the case, you evaluate the regular measure expression. When there is more than one unique value for either or both of [Year] and [State], then it returns BLANK().&lt;/P&gt;</description>
      <pubDate>Thu, 18 Feb 2016 04:19:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Page-level-or-report-level-filter/m-p/19461#M263</guid>
      <dc:creator>greggyb</dc:creator>
      <dc:date>2016-02-18T04:19:39Z</dc:date>
    </item>
    <item>
      <title>Re: Page level or report level filter</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Page-level-or-report-level-filter/m-p/19572#M274</link>
      <description>&lt;P&gt;If you see below image, in that case I have to create a new column for everytime when I will create a some chart or graph and have to add that&amp;nbsp;code, is that so? Year and State selection is either one or more. but my requirement is like, is nothing selected then, nothing will show on graph, all graph or charts should blank, so once year and state selected, it will start populating the value.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 574px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/2666iC1E5208AD6DCD691/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;﻿&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Feb 2016 16:26:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Page-level-or-report-level-filter/m-p/19572#M274</guid>
      <dc:creator>sagarpsali</dc:creator>
      <dc:date>2016-02-18T16:26:51Z</dc:date>
    </item>
    <item>
      <title>Re: Page level or report level filter</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Page-level-or-report-level-filter/m-p/19599#M276</link>
      <description>&lt;P&gt;Yes, you will have to create explicit measure to be used in each visual.&lt;/P&gt;</description>
      <pubDate>Thu, 18 Feb 2016 18:14:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Page-level-or-report-level-filter/m-p/19599#M276</guid>
      <dc:creator>greggyb</dc:creator>
      <dc:date>2016-02-18T18:14:09Z</dc:date>
    </item>
    <item>
      <title>Re: Page level or report level filter</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Page-level-or-report-level-filter/m-p/19681#M281</link>
      <description>&lt;P&gt;Hi Greg,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks for replying, but i am not looking only one selection, I am looking atleast one selection. When I created a new column with given code, but when i m going to the report, value is not populating in that, it is remaining blank, even if i select year and any state.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Feb 2016 07:33:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Page-level-or-report-level-filter/m-p/19681#M281</guid>
      <dc:creator>sagarpsali</dc:creator>
      <dc:date>2016-02-19T07:33:18Z</dc:date>
    </item>
    <item>
      <title>Re: Page level or report level filter</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Page-level-or-report-level-filter/m-p/19807#M290</link>
      <description>&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/6392"&gt;@sagarpsali﻿&lt;/a&gt;, I'm unclear on your requirement now. Do you want to enforce exactly 1 year and &amp;gt;=1 state?&lt;/P&gt;</description>
      <pubDate>Sat, 20 Feb 2016 04:32:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Page-level-or-report-level-filter/m-p/19807#M290</guid>
      <dc:creator>greggyb</dc:creator>
      <dc:date>2016-02-20T04:32:41Z</dc:date>
    </item>
    <item>
      <title>Re: Page level or report level filter</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Page-level-or-report-level-filter/m-p/19810#M292</link>
      <description>Hi,&lt;BR /&gt;My requirements is like if at least year and one state should be selected then only it will show graph. So there are chances that user can select one year or more and same for state. But need here is, to show some graph, user has to select at least one year and one state. Now what is happening, even if there is nothing selected either year or state, graph/report considering all input and showing the result.&lt;BR /&gt;Here one more question to me, when report will load, either by default all values from year and state should preselected and then user can decide which to select. If u see the diagram which I uploaded, it has select all option is there for states, if user click that "Select All" states get deselected. And even though, graph showing value. So when nothing is selected from state or year , none will appear on report. As soon as user will select at least one year and state, it should refect in graph.&lt;BR /&gt;I hope u understand my question.</description>
      <pubDate>Sat, 20 Feb 2016 04:45:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Page-level-or-report-level-filter/m-p/19810#M292</guid>
      <dc:creator>sagarpsali</dc:creator>
      <dc:date>2016-02-20T04:45:17Z</dc:date>
    </item>
  </channel>
</rss>

