<?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: Multiple different parameters into Single graph in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Multiple-different-parameters-into-Single-graph/m-p/574923#M17748</link>
    <description>&lt;P&gt;Yes - However in PowerBI I have 3 graphs 3 Parameters - I want to use 1 graph for all 3 parameters so that 1 graph is producing the output of 3 parameters&amp;nbsp;instead of having 3 graphs with each parameter&amp;nbsp;assigned to each one&lt;/P&gt;</description>
    <pubDate>Wed, 28 Nov 2018 20:57:12 GMT</pubDate>
    <dc:creator>JackR07</dc:creator>
    <dc:date>2018-11-28T20:57:12Z</dc:date>
    <item>
      <title>Multiple different parameters into Single graph</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Multiple-different-parameters-into-Single-graph/m-p/572993#M17714</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to figure out a way to input three different parameters into 1 single linear graph for the output. Currently, I have three separate graphs that generate 1 output, but I want 1 single linear graph with all three parameters imported and combined to produce the output.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help would be appreciated.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Nov 2018 17:28:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Multiple-different-parameters-into-Single-graph/m-p/572993#M17714</guid>
      <dc:creator>JackR07</dc:creator>
      <dc:date>2018-11-26T17:28:10Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple different parameters into Single graph</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Multiple-different-parameters-into-Single-graph/m-p/573418#M17724</link>
      <description>&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/93970"&gt;@JackR07&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;The requirement is not very clear.&amp;nbsp;&lt;/SPAN&gt;You can implement a measure using parameters by using&amp;nbsp;&lt;A class="ajax" href="https://dax.guide/selectedvalue/" data-id="208" target="_blank"&gt;SELECTEDVALUE&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Nov 2018 08:27:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Multiple-different-parameters-into-Single-graph/m-p/573418#M17724</guid>
      <dc:creator>v-chuncz-msft</dc:creator>
      <dc:date>2018-11-27T08:27:29Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple different parameters into Single graph</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Multiple-different-parameters-into-Single-graph/m-p/574923#M17748</link>
      <description>&lt;P&gt;Yes - However in PowerBI I have 3 graphs 3 Parameters - I want to use 1 graph for all 3 parameters so that 1 graph is producing the output of 3 parameters&amp;nbsp;instead of having 3 graphs with each parameter&amp;nbsp;assigned to each one&lt;/P&gt;</description>
      <pubDate>Wed, 28 Nov 2018 20:57:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Multiple-different-parameters-into-Single-graph/m-p/574923#M17748</guid>
      <dc:creator>JackR07</dc:creator>
      <dc:date>2018-11-28T20:57:12Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple different parameters into Single graph</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Multiple-different-parameters-into-Single-graph/m-p/578011#M17803</link>
      <description>&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. Create a table using : GENERATESERIES(1, 3, 1).&lt;/P&gt;&lt;P&gt;2. Assign Parameter Title to each number:&amp;nbsp; Param_Type = SWITCH(Type[TypeNo], 1, "Price", 2, "Weight", 3, "Volume").&lt;/P&gt;&lt;P&gt;3. Create one Measure:&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; Param=&amp;nbsp; &amp;nbsp;IF(SELECTEDVALUE(Type[Param_Type])="Price", [Price],&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;IF(SELECTEDVALUE(Type[Param_Type]) = "Weight", [Weight],&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;IF(SELECTEDVALUE(Type[Param_Type]) = "Volume", [Volume] ,&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;[Price]&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt; ) )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;4. Use this PARAM as the value into your graph.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Shishir Goel&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;**Please Mark it as Solution, if works for you**&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 04 Dec 2018 06:24:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Multiple-different-parameters-into-Single-graph/m-p/578011#M17803</guid>
      <dc:creator>shishir999</dc:creator>
      <dc:date>2018-12-04T06:24:01Z</dc:date>
    </item>
  </channel>
</rss>

