<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Precedence Project Part Two: VALUES()</title>
	<atom:link href="http://www.powerpivotpro.com/2011/06/precedence-project-part-two-values/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.powerpivotpro.com/2011/06/precedence-project-part-two-values/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=precedence-project-part-two-values</link>
	<description>Thoughts on PowerPivot, the future of Excel, and the occasional movie quote</description>
	<lastBuildDate>Sat, 18 May 2013 19:40:23 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: powerpivotpro</title>
		<link>http://www.powerpivotpro.com/2011/06/precedence-project-part-two-values/#comment-959</link>
		<dc:creator>powerpivotpro</dc:creator>
		<pubDate>Thu, 16 Jun 2011 13:24:04 +0000</pubDate>
		<guid isPermaLink="false">https://powerpivotpro.wordpress.com/2011/06/16/precedence-project-part-two-values/#comment-959</guid>
		<description><![CDATA[EXCELLENT catch Derek.  I&#039;m pretty sure that&#039;s because I filtered out blank years from the pivot.  I will revisit when I get to my workstation :)]]></description>
		<content:encoded><![CDATA[<p>EXCELLENT catch Derek.  I&#8217;m pretty sure that&#8217;s because I filtered out blank years from the pivot.  I will revisit when I get to my workstation <img src='http://www.powerpivotpro.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Derek C</title>
		<link>http://www.powerpivotpro.com/2011/06/precedence-project-part-two-values/#comment-958</link>
		<dc:creator>Derek C</dc:creator>
		<pubDate>Thu, 16 Jun 2011 13:16:43 +0000</pubDate>
		<guid isPermaLink="false">https://powerpivotpro.wordpress.com/2011/06/16/precedence-project-part-two-values/#comment-958</guid>
		<description><![CDATA[It&#039;s interesting the two year values in the blue circle aren&#039;t actually equal.  $12,352,870$12,352,589 I know it is a miniscule amount in context, but I run into issues like this quite often.  I spend a lot of time making sure my numbers tie when using DAX and continually run into little anomalies.  

Does this imply that there is a dollar value of $281 in the dataset without an associated Periods[FiscalQuarter] value, but that does have a Periods[Year] value? Alternatively is there a filter the VALUES() function recognizes that the ALL() function overrides?]]></description>
		<content:encoded><![CDATA[<p>It&#8217;s interesting the two year values in the blue circle aren&#8217;t actually equal.  $12,352,870$12,352,589 I know it is a miniscule amount in context, but I run into issues like this quite often.  I spend a lot of time making sure my numbers tie when using DAX and continually run into little anomalies.  </p>
<p>Does this imply that there is a dollar value of $281 in the dataset without an associated Periods[FiscalQuarter] value, but that does have a Periods[Year] value? Alternatively is there a filter the VALUES() function recognizes that the ALL() function overrides?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: The Great Precedence Project (Filter Rules for DAX) &#8211; Evaluation Context in PowerPivot &#171; George&#039;s BI Blog</title>
		<link>http://www.powerpivotpro.com/2011/06/precedence-project-part-two-values/#comment-957</link>
		<dc:creator>The Great Precedence Project (Filter Rules for DAX) &#8211; Evaluation Context in PowerPivot &#171; George&#039;s BI Blog</dc:creator>
		<pubDate>Thu, 16 Jun 2011 06:44:50 +0000</pubDate>
		<guid isPermaLink="false">https://powerpivotpro.wordpress.com/2011/06/16/precedence-project-part-two-values/#comment-957</guid>
		<description><![CDATA[[...] and Here,  PowerPivotPro.com published an excellent blog about the DAX [...] ]]></description>
		<content:encoded><![CDATA[<p>[...] and Here,  PowerPivotPro.com published an excellent blog about the DAX [...] </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: George Qiao</title>
		<link>http://www.powerpivotpro.com/2011/06/precedence-project-part-two-values/#comment-956</link>
		<dc:creator>George Qiao</dc:creator>
		<pubDate>Thu, 16 Jun 2011 06:33:33 +0000</pubDate>
		<guid isPermaLink="false">https://powerpivotpro.wordpress.com/2011/06/16/precedence-project-part-two-values/#comment-956</guid>
		<description><![CDATA[Actually, [Measure](ALL(Dim),VALUES(Dim[col])) is a shot from of Calculate([Measure],ALL(Dim),VALUES(Dim[col])), and a more generic form would be Calculate([Measure], exp1, exp2 ,... , expN). 

The fact is that to calculate the [Measure], all expressions need be satisfied, which means exp1 and exp2 and....and expN.

 In addition, any evaluation context on the slicer (as long as connected), report filters and rows/columns on the Pivot table will be considered as well, which means (exp1 and exp2 and....and expN) AND (Existing evaluation context).

I believe this is the underneath rule to explain all the above behaviour. But it is fantastic to see someone list the actual examples. It is hard to visualise the theory in brain and always good to have a quick sample to validate your thoughts. Thank you, Rob.]]></description>
		<content:encoded><![CDATA[<p>Actually, [Measure](ALL(Dim),VALUES(Dim[col])) is a shot from of Calculate([Measure],ALL(Dim),VALUES(Dim[col])), and a more generic form would be Calculate([Measure], exp1, exp2 ,&#8230; , expN). </p>
<p>The fact is that to calculate the [Measure], all expressions need be satisfied, which means exp1 and exp2 and&#8230;.and expN.</p>
<p> In addition, any evaluation context on the slicer (as long as connected), report filters and rows/columns on the Pivot table will be considered as well, which means (exp1 and exp2 and&#8230;.and expN) AND (Existing evaluation context).</p>
<p>I believe this is the underneath rule to explain all the above behaviour. But it is fantastic to see someone list the actual examples. It is hard to visualise the theory in brain and always good to have a quick sample to validate your thoughts. Thank you, Rob.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
