<?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: Standard Deviation based off of a Measure instead of Column in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Standard-Deviation-based-off-of-a-Measure-instead-of-Column/m-p/3117177#M110413</link>
    <description>&lt;P&gt;I'm trying to do something similiar and think the solution has to be somehow using summarize/summarize columns and creating a virtual table to calculate the Standarad Deviation off of.&amp;nbsp; Is that possible or has anyone done that before?&lt;/P&gt;</description>
    <pubDate>Tue, 07 Mar 2023 18:53:43 GMT</pubDate>
    <dc:creator>chudson</dc:creator>
    <dc:date>2023-03-07T18:53:43Z</dc:date>
    <item>
      <title>Standard Deviation based off of a Measure instead of Column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Standard-Deviation-based-off-of-a-Measure-instead-of-Column/m-p/3115196#M110278</link>
      <description>&lt;P&gt;Hi PBI Community,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I'm looking to plot a rolling 12 month Standard Deviation of the Complaint Rate line, which is a &lt;EM&gt;measure&lt;/EM&gt; of Complaints Number divided by 3 Month Sales Average (both numerator and denominator are also measures). I'm under the impression that STDEV.S can only be applied to a column, so I'm hoping to get some help on how to work around this. A measure of a calculated column works for single selected Sub Categories but not for combinations of multiple Sub Categories, which is what this report will primarily use.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;Thank you!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Mar 2023 01:43:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Standard-Deviation-based-off-of-a-Measure-instead-of-Column/m-p/3115196#M110278</guid>
      <dc:creator>ARLFG</dc:creator>
      <dc:date>2023-03-07T01:43:05Z</dc:date>
    </item>
    <item>
      <title>Re: Standard Deviation based off of a Measure instead of Column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Standard-Deviation-based-off-of-a-Measure-instead-of-Column/m-p/3117177#M110413</link>
      <description>&lt;P&gt;I'm trying to do something similiar and think the solution has to be somehow using summarize/summarize columns and creating a virtual table to calculate the Standarad Deviation off of.&amp;nbsp; Is that possible or has anyone done that before?&lt;/P&gt;</description>
      <pubDate>Tue, 07 Mar 2023 18:53:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Standard-Deviation-based-off-of-a-Measure-instead-of-Column/m-p/3117177#M110413</guid>
      <dc:creator>chudson</dc:creator>
      <dc:date>2023-03-07T18:53:43Z</dc:date>
    </item>
    <item>
      <title>Re: Standard Deviation based off of a Measure instead of Column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Standard-Deviation-based-off-of-a-Measure-instead-of-Column/m-p/3117824#M110448</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;&amp;nbsp;any clues to lead us to victory?!&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Mar 2023 02:53:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Standard-Deviation-based-off-of-a-Measure-instead-of-Column/m-p/3117824#M110448</guid>
      <dc:creator>ARLFG</dc:creator>
      <dc:date>2023-03-08T02:53:00Z</dc:date>
    </item>
    <item>
      <title>Re: Standard Deviation based off of a Measure instead of Column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Standard-Deviation-based-off-of-a-Measure-instead-of-Column/m-p/3117910#M110451</link>
      <description>&lt;P&gt;@Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="525168" data-lia-user-login="ARLFG" class="lia-mention lia-mention-user"&gt;ARLFG&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;perhaps someone like this?&lt;/P&gt;
&lt;P&gt;STD =&lt;BR /&gt;VAR CurrentMonth =&lt;BR /&gt;SELECTEDVALUE ( 'Date'[Month] )&lt;BR /&gt;RETURN&lt;BR /&gt;MAXX (&lt;BR /&gt;FILTER (&lt;BR /&gt;ADDCOLUMNS ( ALLSELECTED ( 'Date'[Month] ), "@STD", STDEV.S ( [Measure] ) ),&lt;BR /&gt;'Date'[Month] = CurrentMonth&lt;BR /&gt;),&lt;BR /&gt;[@STD]&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Wed, 08 Mar 2023 03:41:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Standard-Deviation-based-off-of-a-Measure-instead-of-Column/m-p/3117910#M110451</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-03-08T03:41:03Z</dc:date>
    </item>
  </channel>
</rss>

