<?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 Multiple Calculated column depending upon one parameter in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Multiple-Calculated-column-depending-upon-one-parameter/m-p/3378824#M43874</link>
    <description>&lt;P&gt;I am trying to make two different columns whoes values should be depended on the parameter value selected in slicer,&lt;BR /&gt;like when i select option 1 the values of those two columns should change, and if i choose option 2 then both column values should change accordingly.&lt;BR /&gt;So let me give a example, there is a parameter called period which contain four values monthly, quarterly, half yearly, and yearly, i want to make one column which will show the date monthly if monthly is selected, quarter wise if quarterly is selected and so on, similarly there i want one more column to change its value according to the value selected by period paramter, how can i do that. I can do it if there was only one column using field parameter but how can i do with multiple column, please help.&lt;/P&gt;</description>
    <pubDate>Mon, 14 Aug 2023 10:21:12 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2023-08-14T10:21:12Z</dc:date>
    <item>
      <title>Multiple Calculated column depending upon one parameter</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Multiple-Calculated-column-depending-upon-one-parameter/m-p/3378824#M43874</link>
      <description>&lt;P&gt;I am trying to make two different columns whoes values should be depended on the parameter value selected in slicer,&lt;BR /&gt;like when i select option 1 the values of those two columns should change, and if i choose option 2 then both column values should change accordingly.&lt;BR /&gt;So let me give a example, there is a parameter called period which contain four values monthly, quarterly, half yearly, and yearly, i want to make one column which will show the date monthly if monthly is selected, quarter wise if quarterly is selected and so on, similarly there i want one more column to change its value according to the value selected by period paramter, how can i do that. I can do it if there was only one column using field parameter but how can i do with multiple column, please help.&lt;/P&gt;</description>
      <pubDate>Mon, 14 Aug 2023 10:21:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Multiple-Calculated-column-depending-upon-one-parameter/m-p/3378824#M43874</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-08-14T10:21:12Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Calculated column depending upon one parameter</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Multiple-Calculated-column-depending-upon-one-parameter/m-p/3382405#M43919</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I suggest you to create a Calendar table and then use &lt;A href="https://learn.microsoft.com/en-us/power-bi/create-reports/power-bi-field-parameters" target="_self"&gt;Fields Parameters&lt;/A&gt;.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Calendar = 
ADDCOLUMNS (
    CALENDAR ( DATE ( 2023, 01, 01 ), DATE ( 2023, 12, 31 ) ),
    "Year", YEAR ( [Date] ),
    "Quarter",
        "Q" &amp;amp; ""
            &amp;amp; QUARTER ( [Date] ),
    "Month", FORMAT ( [Date], "MMMM" ),
    "MonthSort", MONTH ( [Date] )
)&lt;/LI-CODE&gt;
&lt;P&gt;Field Parameter:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vrzhoumsft_0-1692176617996.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/956014iF5CF4DCD2A395681/image-size/medium?v=v2&amp;amp;px=400" role="button" title="vrzhoumsft_0-1692176617996.png" alt="vrzhoumsft_0-1692176617996.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Add Period in Axis field in your visual.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vrzhoumsft_1-1692176643536.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/956015i7C1A40932722A51B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="vrzhoumsft_1-1692176643536.png" alt="vrzhoumsft_1-1692176643536.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vrzhoumsft_2-1692176649866.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/956016i0381793A60D52CE8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="vrzhoumsft_2-1692176649866.png" alt="vrzhoumsft_2-1692176649866.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vrzhoumsft_3-1692176656686.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/956017i052B9E77D3524AC1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="vrzhoumsft_3-1692176656686.png" alt="vrzhoumsft_3-1692176656686.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Rico Zhou&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Aug 2023 09:04:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Multiple-Calculated-column-depending-upon-one-parameter/m-p/3382405#M43919</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-08-16T09:04:42Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Calculated column depending upon one parameter</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Multiple-Calculated-column-depending-upon-one-parameter/m-p/3384311#M43936</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous&lt;/a&gt;,&lt;BR /&gt;I have not the problem in changing the date format using slicer, that I can do it was just an example but i want one more column to change with the change in selection of slicer, that i cannot do it with the field parameter, so can to tell me how to do it&lt;/P&gt;</description>
      <pubDate>Thu, 17 Aug 2023 05:27:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Multiple-Calculated-column-depending-upon-one-parameter/m-p/3384311#M43936</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-08-17T05:27:32Z</dc:date>
    </item>
  </channel>
</rss>

