<?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: Calculating Coefficient of Variation in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-Coefficient-of-Variation/m-p/974002#M11699</link>
    <description>&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;All filtering is one-way only from a dimension to the fact table.&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;// Dimensions:
// 		Employee connected to FactTable[PIN] (1:*)
// 		Calendar connected to FactTable[Date] (1:*)
// 		Team connected to FactTable[TeamId] (1:*)
// 		Project connected to FactTable[ProjectId] (1:*)
// 		TimeCategory connected to FactTable[TimeCategoryId] (1:*)
// All *Id fields are hidden in dimensions.
//
// All columns in the FactTable must be hidden.
// Only measures can be visible. All slicing is
// done through dimensions. This is the correct
// star schema model.

// Define the following measures. They work for any
// slice for any dimension. In particular for 
// slices on Employee.

[Total] = SUM( FactTable[Hours] )

[Illness] =
	CALCULATE(
		[Total],
		KEEPFILTERS( TimeCategory[TimeCategoryId] = "Illness" )
	)

[IllnessQuota] = DIVIDE( [Illness], [Total] )
	
[Proportion To Team] =
var __totalForEmps = [Total]
var __teamsOfEmps =
	summarize(
		FactTable,
		Team[TeamId]
	)
var __totalForTeams =
	calculate(
		[Total],
		__teamsOfEmps,
		all( Employee ),
		all( Team )
	)
var __result =
	divide( __totalForEmps, __totalForTeams )
return
	__result
	
	
[VC for Team] =
var __oneTeamVisible = hasonevalue( Team[TeamId] )
var __team = 
	SUMMARIZE(
		FactTable,
		Team[TeamId]
	)
var __employees =
	SUMMARIZE(
		FactTable,
		Employee[PIN]
	)
var __numerator =
	SQRT(
		SUMX(
		
			__employees,
			
			var __iqForEmp = [IllnessQuota]
			var __iqForTeam =
				calculate(
					[IllnessQuota],
					__team,
					all( Team ),
					all( Employee )
				)
			var __propToTeam = [Proportion To Team]
			var __result =
				__propToTeam
					* POWER( __iqForEmp - __iqForTeam, 2 )
			return
				__result
			
		)
	)
var __denominator = 
	calculate(
		[IllnessQuota],
		__team,
		all( Team ),
		all( Employee )
	)
var __varCoeff =
	DIVIDE( __numerator, __denominator )
return
	if( __oneTeamVisible, __varCoeff )&lt;/LI-CODE&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;Once you've implemented the correct model, please let me know how it goes. Thanks &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best&lt;/P&gt;
&lt;P&gt;D&lt;/P&gt;</description>
    <pubDate>Fri, 13 Mar 2020 21:35:38 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2020-03-13T21:35:38Z</dc:date>
    <item>
      <title>Calculating Coefficient of Variation</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-Coefficient-of-Variation/m-p/973192#M11669</link>
      <description>&lt;P&gt;Hello everyone &lt;span class="lia-unicode-emoji" title=":grinning_face_with_big_eyes:"&gt;😃&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;I do have a table containing the following columns:&lt;BR /&gt;&lt;BR /&gt;Personal Number, Date, Team, Project, TimeCategory, Time&lt;BR /&gt;&lt;BR /&gt;There are multiple Personal Numbers per Team, multiple Teams per Project and also multiple TimeCategories per Date and Personal Number.&lt;BR /&gt;&lt;BR /&gt;It is my goal to determine whether the high qutoas of illness are due to some extreme examples of high illness rates or a case of illness rates being high in general.&lt;BR /&gt;&lt;BR /&gt;In order to answer this question, I want to use a statistical tool called the coefficient of variation. This is the standard deviation divided by the expected value.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://en.wikipedia.org/wiki/Coefficient_of_variation" target="_blank"&gt;https://en.wikipedia.org/wiki/Coefficient_of_variation&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Because of different contract lengths, I will not use some equal distribution of the quotas.&lt;BR /&gt;I will use the illness quota per employee as a random variable with probability being equal to the proportion of the employees hours to the hours of the team/project within the selected time period.&lt;BR /&gt;&lt;BR /&gt;Times relevant may be filtered using the column TimeCategory.&lt;BR /&gt;&lt;BR /&gt;I know how to use CALUCATE() im combination with FILTER(), ALL(), ALLEXCEPT(), but I am lost here.&lt;BR /&gt;My problem is: The data must be dynamically preaggregated by Personal Number in order to get the right results. And I do not not know how to do this.&lt;BR /&gt;&lt;BR /&gt;The formula itself will look like this:&lt;BR /&gt;&lt;BR /&gt;CV = (((Illness Quota of employee A- Illness Quota of Team)^2)*(Total Hours of Employee A)/(Total Hours of Team) +.....+((Illness Quota of employee Y- Illness Quota of Team)^2)*(Total Hours of Employee Y)/(Total Hours of Team) )/(IllnessQuota of Team)&lt;BR /&gt;&lt;BR /&gt;As said: My problem is the fact, that the data are not preaggregated by Personal Number.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Need help!&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P class="ics-element-donot-delete 1001_CC@"&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Mar 2020 15:42:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-Coefficient-of-Variation/m-p/973192#M11669</guid>
      <dc:creator>Schmidtmayer</dc:creator>
      <dc:date>2020-03-13T15:42:44Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating Coefficient of Variation</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-Coefficient-of-Variation/m-p/973541#M11677</link>
      <description>Hi there.&lt;BR /&gt;&lt;BR /&gt;Mate, would you please make this more understandable? Please bear in mind that we are not working with your model and what's easily graspable to you is not necessarily easy to grasp for us. You are referring in your formulas to fields that are nowhere to be found in your description. The table at the top you are mentioning does not give us almost any information at all. For instance, where and what is 'illness quota of employee'? I understand there are dimensions and some fact tables in your model but could you be more explicit, please? State what tables you have, what measures, what columns... and how they are linked together.&lt;BR /&gt;&lt;BR /&gt;If ppl don't understand your problem, you won't get any replies.&lt;BR /&gt;&lt;BR /&gt;Best&lt;BR /&gt;D</description>
      <pubDate>Fri, 13 Mar 2020 17:17:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-Coefficient-of-Variation/m-p/973541#M11677</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-03-13T17:17:02Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating Coefficient of Variation</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-Coefficient-of-Variation/m-p/973545#M11678</link>
      <description>&lt;P&gt;I'll have to look, I believe I cover Covariance in my upcoming book, DAX Cookbook. Comes out next week. But would need sample data.&amp;nbsp;Please see this post regarding How to Get Your Question Answered Quickly: &lt;A href="https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490" target="_blank"&gt;https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Mar 2020 17:19:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-Coefficient-of-Variation/m-p/973545#M11678</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2020-03-13T17:19:28Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating Coefficient of Variation</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-Coefficient-of-Variation/m-p/973549#M11680</link>
      <description>&lt;P&gt;Ah yes, here is the formula that I was using for covariance.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Covariance = 
    VAR __Table = 'R04_Table'
    VAR __Count = COUNTROWS(__Table)
    VAR __AvgA = AVERAGEX(__Table,[A])
    VAR __AvgB = AVERAGEX(__Table,[B])
    VAR __Table1 = 
        ADDCOLUMNS(
            __Table,
            "__Covariance",
            DIVIDE(
                ([A] - __AvgA) * ([B] - __AvgB),
                __Count
            )
        )
RETURN
    SUMX(__Table1,[__Covariance])&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 13 Mar 2020 17:25:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-Coefficient-of-Variation/m-p/973549#M11680</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2020-03-13T17:25:39Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating Coefficient of Variation</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-Coefficient-of-Variation/m-p/973831#M11689</link>
      <description>First of all, thanks for the reply.&lt;BR /&gt;I will be more specific.&lt;BR /&gt;&lt;BR /&gt;There is only one table til now, having the mentioned columns:&lt;BR /&gt;&lt;BR /&gt;Personal Number - Unique ID to identify the employees&lt;BR /&gt;Date - no further infos required, I suppose&lt;BR /&gt;Team - the current team of the employee&lt;BR /&gt;Project -the current project of the employee&lt;BR /&gt;TimeCategory - Classification of hours, includes the categories Illness, Productive, Vacation&lt;BR /&gt;Hours - Registered time of the employee&lt;BR /&gt;&lt;BR /&gt;In the following let X be the set of Personal Numbers, T be the set of Teams&lt;BR /&gt;&lt;BR /&gt;For x from X we define:&lt;BR /&gt;&lt;BR /&gt;Total(x) = CALCULATE(SUM(Hours); Personal Number = x)&lt;BR /&gt;Illness(x) = CALCULATE(SUM(Hours); Personal Number =x; TimeCategory = Illness)&lt;BR /&gt;&lt;BR /&gt;For t from T we define:&lt;BR /&gt;&lt;BR /&gt;Total(t) = CALCULATE(SUM(Hours); Team = t)&lt;BR /&gt;Illness(t) = CALCULATE(SUM(Hours); Team = t; TimeCategory = Illness)&lt;BR /&gt;&lt;BR /&gt;Now, the quotas:&lt;BR /&gt;IllnessQuota(x) = Illness(x)/Total(x)&lt;BR /&gt;IllnessQuota(t) = Illness(t)/Total(t)&lt;BR /&gt;&lt;BR /&gt;Lastly:&lt;BR /&gt;Proportion(x) = Total(x)/Total(t)&lt;BR /&gt;&lt;BR /&gt;Remark: Every employee is a member of just one team.&lt;BR /&gt;&lt;BR /&gt;Then I wish to calculate&lt;BR /&gt;&lt;BR /&gt;VC(t) =&lt;BR /&gt;SQRT(&lt;BR /&gt;SUM(&lt;BR /&gt;(IllnessQuota(x) - IllnessQuota(t))^2×Proportion(x)&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;/IllnessQuota(t)&lt;BR /&gt;&lt;BR /&gt;Just these x shall be included, which where a part of t at this time.&lt;BR /&gt;&lt;BR /&gt;A table with the following is also present:&lt;BR /&gt;&lt;BR /&gt;Personal Number, Team, Start&lt;BR /&gt;&lt;BR /&gt;Giving the complete history of teams. The current team of x is mentioned in the first table, so I think this one should not be needed.&lt;BR /&gt;&lt;BR /&gt;CV(t) should be visualized in a bar diagramm having years on the x axis, with Drill Down to month and having a filter for teams.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 13 Mar 2020 18:57:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-Coefficient-of-Variation/m-p/973831#M11689</guid>
      <dc:creator>Schmidtmayer</dc:creator>
      <dc:date>2020-03-13T18:57:48Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating Coefficient of Variation</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-Coefficient-of-Variation/m-p/974002#M11699</link>
      <description>&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;All filtering is one-way only from a dimension to the fact table.&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;// Dimensions:
// 		Employee connected to FactTable[PIN] (1:*)
// 		Calendar connected to FactTable[Date] (1:*)
// 		Team connected to FactTable[TeamId] (1:*)
// 		Project connected to FactTable[ProjectId] (1:*)
// 		TimeCategory connected to FactTable[TimeCategoryId] (1:*)
// All *Id fields are hidden in dimensions.
//
// All columns in the FactTable must be hidden.
// Only measures can be visible. All slicing is
// done through dimensions. This is the correct
// star schema model.

// Define the following measures. They work for any
// slice for any dimension. In particular for 
// slices on Employee.

[Total] = SUM( FactTable[Hours] )

[Illness] =
	CALCULATE(
		[Total],
		KEEPFILTERS( TimeCategory[TimeCategoryId] = "Illness" )
	)

[IllnessQuota] = DIVIDE( [Illness], [Total] )
	
[Proportion To Team] =
var __totalForEmps = [Total]
var __teamsOfEmps =
	summarize(
		FactTable,
		Team[TeamId]
	)
var __totalForTeams =
	calculate(
		[Total],
		__teamsOfEmps,
		all( Employee ),
		all( Team )
	)
var __result =
	divide( __totalForEmps, __totalForTeams )
return
	__result
	
	
[VC for Team] =
var __oneTeamVisible = hasonevalue( Team[TeamId] )
var __team = 
	SUMMARIZE(
		FactTable,
		Team[TeamId]
	)
var __employees =
	SUMMARIZE(
		FactTable,
		Employee[PIN]
	)
var __numerator =
	SQRT(
		SUMX(
		
			__employees,
			
			var __iqForEmp = [IllnessQuota]
			var __iqForTeam =
				calculate(
					[IllnessQuota],
					__team,
					all( Team ),
					all( Employee )
				)
			var __propToTeam = [Proportion To Team]
			var __result =
				__propToTeam
					* POWER( __iqForEmp - __iqForTeam, 2 )
			return
				__result
			
		)
	)
var __denominator = 
	calculate(
		[IllnessQuota],
		__team,
		all( Team ),
		all( Employee )
	)
var __varCoeff =
	DIVIDE( __numerator, __denominator )
return
	if( __oneTeamVisible, __varCoeff )&lt;/LI-CODE&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;Once you've implemented the correct model, please let me know how it goes. Thanks &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best&lt;/P&gt;
&lt;P&gt;D&lt;/P&gt;</description>
      <pubDate>Fri, 13 Mar 2020 21:35:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-Coefficient-of-Variation/m-p/974002#M11699</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-03-13T21:35:38Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating Coefficient of Variation</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-Coefficient-of-Variation/m-p/974820#M11730</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;Thanks a bunch.&lt;BR /&gt;SUMMARIZE was all the thing I actually needed. Was able to put it all into one smaller measure:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;[coefficient of variation] = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;var __tablepersonalnumber =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;SUMMARIZE(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;FactsTable&lt;/DIV&gt;&lt;DIV&gt;FactsTable[PersonalNumber];&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;"Total"; [Total];&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;"Illness"; [Illness];&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;"Quota"; [IllnessQuota]&lt;BR /&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;var __tablecomplete =&lt;BR /&gt;SUMMARIZE (&lt;BR /&gt;FactTable&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;"TotalGroup" ;[Total];&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;"IllnessGroup"; [Illness];&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;"QuotaGroup"; [IllnessQuota]&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;var __tablejoin =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;CROSSJOIN(__tablecomplete; __tablepersonalnumber)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;RETURN SQRT(SUMX(__tablejoin; (Quota - QuotaGroup)*(Quota-QuotaGroup)*Total/TotalGroup))/AVERAGEX(__tablecomplete; QuotaGroup)&lt;BR /&gt;&lt;BR /&gt;Illness, Total and IllnessQuota defined as in your post.&lt;BR /&gt;&lt;BR /&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="313" data-lia-user-login="Greg_Deckler" class="lia-mention lia-mention-user"&gt;Greg_Deckler&lt;/a&gt;&amp;nbsp;: Your measure was not that useful, as the covariance describes the dependence/independence of 2 random variables. Here, I do only have one random variable, being the quotas of illness of the employees. Maybe I will need it later. Thanks for that &lt;span class="lia-unicode-emoji" title=":grinning_face_with_big_eyes:"&gt;😃&lt;/span&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Sun, 15 Mar 2020 14:27:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-Coefficient-of-Variation/m-p/974820#M11730</guid>
      <dc:creator>Schmidtmayer</dc:creator>
      <dc:date>2020-03-15T14:27:46Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating Coefficient of Variation</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-Coefficient-of-Variation/m-p/974830#M11733</link>
      <description>&lt;P&gt;Hi there. Before you think you've got the solution right, have a look at this article:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://www.sqlbi.com/articles/all-the-secrets-of-summarize/" target="_blank" rel="noopener"&gt;https://www.sqlbi.com/articles/all-the-secrets-of-summarize/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Here's an excerpt from it:&lt;BR /&gt;&lt;BR /&gt;UPDATE 2018-01-24 : The content of this article is obsolete as of January 2018. Recent versions of Excel 2016, Power BI, and Analysis Services have a SUMMARIZE behavior that is different from the one described in this article. As noted below, using SUMMARIZE should be deprecated for aggregations and you should use SUMMARIZECOLUMNS instead. Read more in Introducing SUMMARIZECOLUMNS.&lt;BR /&gt;&lt;BR /&gt;Disregard the "obsolete" note. It's not relevant to your case. You should not use SUMMARIZE to do any calculations inside it. Instead, you should always use the SUMMARIZE/ADDCOLUMNS combination. &lt;BR /&gt;&lt;BR /&gt;Please read the article if you want to be sure your DAX is always correct. But there's more to it. You should also have the proper dimensional design (as I outlined in my measure in the preamble) if you want to be safe in the knowledge that your measures always work correctly in any circumstances. If you want to know what can happen if you don't do this, then go and read this:&amp;nbsp;&lt;A href="https://www.sqlbi.com/articles/understanding-dax-auto-exist/" target="_blank"&gt;https://www.sqlbi.com/articles/understanding-dax-auto-exist/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Be careful with how you structure your models because the correctness of figures DAX produces depends on it.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Best&lt;BR /&gt;D&lt;/P&gt;</description>
      <pubDate>Sun, 15 Mar 2020 14:55:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-Coefficient-of-Variation/m-p/974830#M11733</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-03-15T14:55:23Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating Coefficient of Variation</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-Coefficient-of-Variation/m-p/974853#M11743</link>
      <description>&lt;P&gt;Yeah, sorry about that&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="215136" data-lia-user-login="Schmidtmayer" class="lia-mention lia-mention-user"&gt;Schmidtmayer&lt;/a&gt;&amp;nbsp;, read that one too quickly!&lt;/P&gt;</description>
      <pubDate>Sun, 15 Mar 2020 15:36:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-Coefficient-of-Variation/m-p/974853#M11743</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2020-03-15T15:36:15Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating Coefficient of Variation</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-Coefficient-of-Variation/m-p/975838#M11787</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;:&lt;BR /&gt;&lt;BR /&gt;Thanks for pointing out. I was aware of this during testing of my measure. All the values were complete garbage the first time I tried it. That's why I used the second table for the values of the whole group I am looking at and crossjoining it. Til now, everything works fine. Also checked the values via pocket calculator.&lt;BR /&gt;&lt;BR /&gt;Regaring the DataModell: Sorry for ignoring it. We are using this model as a standard within our departement, so I didn't answer this.&lt;BR /&gt;&lt;BR /&gt;Greetings Tom&lt;/P&gt;</description>
      <pubDate>Mon, 16 Mar 2020 10:22:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-Coefficient-of-Variation/m-p/975838#M11787</guid>
      <dc:creator>Schmidtmayer</dc:creator>
      <dc:date>2020-03-16T10:22:10Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating Coefficient of Variation</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-Coefficient-of-Variation/m-p/975876#M11791</link>
      <description>Hi there.&lt;BR /&gt;&lt;BR /&gt;Just the last word of warning: If you have a model that consists of one big fact table, then you'll never know when the problem with auto-exist will bite you because it's almost random (it's not really but whether it happens or not depends on data distribution in your table). &lt;BR /&gt;&lt;BR /&gt;So, in a word, you are risking producing wrong numbers without even knowing it. If you and your department can live with that... then all is good.&lt;BR /&gt;&lt;BR /&gt;Best&lt;BR /&gt;D</description>
      <pubDate>Mon, 16 Mar 2020 10:50:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-Coefficient-of-Variation/m-p/975876#M11791</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-03-16T10:50:16Z</dc:date>
    </item>
  </channel>
</rss>

