<?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: based on selected month slicer values other column values populated in visual in Desktop</title>
    <link>https://community.fabric.microsoft.com/t5/Desktop/based-on-selected-month-slicer-values-other-column-values/m-p/277452#M123779</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your question is not clear.&amp;nbsp; Based on the dataset that you have pasted, please show the expected result.&lt;/P&gt;</description>
    <pubDate>Fri, 13 Oct 2017 03:02:06 GMT</pubDate>
    <dc:creator>Ashish_Mathur</dc:creator>
    <dc:date>2017-10-13T03:02:06Z</dc:date>
    <item>
      <title>based on selected month slicer values other column values populated in visual</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/based-on-selected-month-slicer-values-other-column-values/m-p/276819#M123457</link>
      <description>&lt;P&gt;I have 2 columns in databased IDMonthYear and PercentageArchived and for every month value is different for Percentage Archived.&lt;/P&gt;&lt;P&gt;table is like below&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;BaselineIDMonthYear PercentageArchived&lt;BR /&gt;Apr-17&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 100.00&lt;BR /&gt;Apr-17&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;118.33&lt;BR /&gt;Apr-17&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1.73&lt;BR /&gt;Aug-17&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 0.00&lt;BR /&gt;Aug-17&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 0.00&lt;BR /&gt;Dec-17&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;0.00&lt;BR /&gt;Dec-17&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;0.00&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;so when user select any month from that slicer for that particular month values is populated &lt;SPAN&gt;PercentageArchived&amp;nbsp;&lt;/SPAN&gt;dynmically.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;means i need to prepard DAX for Percenatage Archived&amp;nbsp; values for Baseline Month later i need to subtract that values for Percetgae Archived values for Compariosn month . i am new in DAX so please help out achived abobe scenario.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Oct 2017 08:27:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/based-on-selected-month-slicer-values-other-column-values/m-p/276819#M123457</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-10-12T08:27:40Z</dc:date>
    </item>
    <item>
      <title>Re: based on selected month slicer values other column values populated in visual</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/based-on-selected-month-slicer-values-other-column-values/m-p/277436#M123774</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;&lt;EM&gt;&amp;gt;&amp;gt;means i need to prepard DAX for Percenatage Archived&amp;nbsp; values for Baseline Month later i need to subtract that values for Percetgae Archived values for Compariosn month&amp;nbsp;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;Since I'm not so sure the 'Comparison month' means. Does it means current row records or other? Please share more detail to help us clarify this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If it means use current row to compare with selected value, you can refer to below steps.&lt;/P&gt;
&lt;P&gt;1. Use percent column to create new table, and let it as the source of slicer.&lt;/P&gt;
&lt;PRE&gt;Selector = VALUES('Sample'[Percent]) &lt;/PRE&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2. Write a measure to calculate with selected value.&lt;/P&gt;
&lt;PRE&gt;dynamic Diff = 
var selected=SELECTEDVALUE(Selector[Percent])
return
selected-MAX('Sample'[Percent]) &lt;/PRE&gt;
&lt;P&gt;Result:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Xiaoxin Sheng&lt;/P&gt;</description>
      <pubDate>Fri, 13 Oct 2017 02:46:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/based-on-selected-month-slicer-values-other-column-values/m-p/277436#M123774</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-10-13T02:46:06Z</dc:date>
    </item>
    <item>
      <title>Re: based on selected month slicer values other column values populated in visual</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/based-on-selected-month-slicer-values-other-column-values/m-p/277452#M123779</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your question is not clear.&amp;nbsp; Based on the dataset that you have pasted, please show the expected result.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Oct 2017 03:02:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/based-on-selected-month-slicer-values-other-column-values/m-p/277452#M123779</guid>
      <dc:creator>Ashish_Mathur</dc:creator>
      <dc:date>2017-10-13T03:02:06Z</dc:date>
    </item>
  </channel>
</rss>

