<?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: Bell Curve using Dax in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Bell-Curve-using-Dax/m-p/2685544#M80618</link>
    <description>&lt;P&gt;TTF is average time to fill -5.92 is -3 standard deviations from the mean. It's not an actual data point. 52.95 is mean - 19.62 is standard deviation. 52.92 -3*19.62.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a column that I have calculated which is =networkdays in the Excel spreadsheet. That gives me my average days for each job. I've then calculated mean, median, standard deviation from that. If there's a way to auto calculate that from dates alone that would help when uploading a new report&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 07 Aug 2022 11:27:54 GMT</pubDate>
    <dc:creator>Gezz</dc:creator>
    <dc:date>2022-08-07T11:27:54Z</dc:date>
    <item>
      <title>Bell Curve using Dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Bell-Curve-using-Dax/m-p/2681354#M80309</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a table TTF Raw Data + Formulas Added - with a column called Average Days - I have created a measure for Mean, Median, Standard Deviation and X-3&lt;SPAN&gt;σ and X+3σ - figures below.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Mean = 52.95652174&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Median = 50&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Standard Deviation = 19.623&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;X-3σ = -5.92&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;X+3σ = 111.83&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;BR /&gt;I would like to create a bell curve.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;My next step was to create a measure for Normal Distribution e.g. NORM.DIST(X, Mean, Standard_dev, cumulative. But this is where I get stuck - any help is appreciated.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Aug 2022 10:16:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Bell-Curve-using-Dax/m-p/2681354#M80309</guid>
      <dc:creator>Gezz</dc:creator>
      <dc:date>2022-08-04T10:16:24Z</dc:date>
    </item>
    <item>
      <title>Re: Bell Curve using Dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Bell-Curve-using-Dax/m-p/2685024#M80568</link>
      <description>&lt;P&gt;You have your six sigma boundaries. First step is to map these out it in a new table ( or data from an existing table.&amp;nbsp; Curious how you can have negative TTF though )&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Table = GENERATESERIES(-10,120)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Next you add a calculated column that computes the normal distribution&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;ND = NORM.DIST([Value],52.956,19.623,FALSE())&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Last step is to plot it in a line chart or column chart.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 06 Aug 2022 01:17:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Bell-Curve-using-Dax/m-p/2685024#M80568</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2022-08-06T01:17:08Z</dc:date>
    </item>
    <item>
      <title>Re: Bell Curve using Dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Bell-Curve-using-Dax/m-p/2685541#M80617</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="421608" data-lia-user-login="Gezz" class="lia-mention lia-mention-user"&gt;Gezz&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You don't want a dynamic measure(s) and a dynamic chart? This needs to be static? I thought you wanted to be able to plot such a curve for a dynamic selection of a subset of your data...&lt;/P&gt;</description>
      <pubDate>Sun, 07 Aug 2022 11:09:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Bell-Curve-using-Dax/m-p/2685541#M80617</guid>
      <dc:creator>daXtreme</dc:creator>
      <dc:date>2022-08-07T11:09:31Z</dc:date>
    </item>
    <item>
      <title>Re: Bell Curve using Dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Bell-Curve-using-Dax/m-p/2685544#M80618</link>
      <description>&lt;P&gt;TTF is average time to fill -5.92 is -3 standard deviations from the mean. It's not an actual data point. 52.95 is mean - 19.62 is standard deviation. 52.92 -3*19.62.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a column that I have calculated which is =networkdays in the Excel spreadsheet. That gives me my average days for each job. I've then calculated mean, median, standard deviation from that. If there's a way to auto calculate that from dates alone that would help when uploading a new report&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 07 Aug 2022 11:27:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Bell-Curve-using-Dax/m-p/2685544#M80618</guid>
      <dc:creator>Gezz</dc:creator>
      <dc:date>2022-08-07T11:27:54Z</dc:date>
    </item>
    <item>
      <title>Re: Bell Curve using Dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Bell-Curve-using-Dax/m-p/2685546#M80619</link>
      <description>&lt;P&gt;Ideally I'd like to set it up so that when I load a whole new excel sheet it will auto update - but working on how to do a bell curve is first step&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 07 Aug 2022 11:29:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Bell-Curve-using-Dax/m-p/2685546#M80619</guid>
      <dc:creator>Gezz</dc:creator>
      <dc:date>2022-08-07T11:29:46Z</dc:date>
    </item>
    <item>
      <title>Re: Bell Curve using Dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Bell-Curve-using-Dax/m-p/2689123#M80904</link>
      <description>&lt;P&gt;Hi Inbendlin&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I created a table using GENERATESERIES and a Calculated Column.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I have a Table with one column from with numbers -5 through to 120 and the another with the distribution values for these figures. The -5 through to 120 are the range in which all of the average days values fall within. I need the distribution values for the unique figures in my Average Days column.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In below example you have the unique student scores and the distribution for each one - I need to do that with Average Days through DAX.&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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was trying to use DAX to add TFF + &amp;nbsp;Forumlas Added [Average Days] as another column in the table but wasn't able to.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any suggestions?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Aug 2022 09:34:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Bell-Curve-using-Dax/m-p/2689123#M80904</guid>
      <dc:creator>Gezz</dc:creator>
      <dc:date>2022-08-09T09:34:14Z</dc:date>
    </item>
    <item>
      <title>Re: Bell Curve using Dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Bell-Curve-using-Dax/m-p/2689358#M80921</link>
      <description>&lt;P&gt;I responded to Ibendlin below - are you able to help with distributions for each unique data point?&lt;/P&gt;</description>
      <pubDate>Tue, 09 Aug 2022 09:36:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Bell-Curve-using-Dax/m-p/2689358#M80921</guid>
      <dc:creator>Gezz</dc:creator>
      <dc:date>2022-08-09T09:36:23Z</dc:date>
    </item>
    <item>
      <title>Re: Bell Curve using Dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Bell-Curve-using-Dax/m-p/2689844#M80960</link>
      <description>&lt;P&gt;It is not clear to me what your expected outcome is. I can not help you without usable sample data. Screenshot are not usable.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Aug 2022 12:24:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Bell-Curve-using-Dax/m-p/2689844#M80960</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2022-08-09T12:24:23Z</dc:date>
    </item>
    <item>
      <title>Re: Bell Curve using Dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Bell-Curve-using-Dax/m-p/2689879#M80963</link>
      <description>&lt;P&gt;Hi Ibendlin,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a column called Averages Days with a series of unique values, e.g 11, 15, 42, 47, 56, 112 etc. I want to plot those with their distribution - so for each value it would be - norm.dist (11, 52.95, 19.62, false) . I would then get a value 0.0011 etc. I could then use the distribution values and the average days value in a histogram to get a skewed bell curve.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I need one column with all the distribution values and one with all the values from Average Days.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I made a table and need a column that refers to the values listed in the Average Days column which is a separate spreadsheet and then I can do a norm.dist on it I think.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Aug 2022 12:43:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Bell-Curve-using-Dax/m-p/2689879#M80963</guid>
      <dc:creator>Gezz</dc:creator>
      <dc:date>2022-08-09T12:43:27Z</dc:date>
    </item>
  </channel>
</rss>

