<?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: Using ALLCROSSFILTERED with CALCULATE in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-ALLCROSSFILTERED-with-CALCULATE/m-p/699532#M762</link>
    <description>&lt;P&gt;For others who may have this question, I have a partial solution:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Logged In User = CALCULATE(SELECTEDVALUE('Employee Dim'[Custodian Name]),FILTER(ALL('Employee Dim'),[Custodian Email]=USERPRINCIPALNAME()),&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;ALL('Connected Client Fact')&lt;/STRONG&gt;&lt;/FONT&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;By using a second filter on the central Fact table I was able to remove any crossfiltering that was occuring on the Employee dimension.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;You'll note that this solution is predecated on the point that there is a central table. This would not have worked if I needed data from the Fact table. If that were the case I would need to remove all the filters individually from each connected dimension.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;I hope an expert can tell me why ALLCROSSFILTERED is not working.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
    <pubDate>Fri, 24 May 2019 15:21:05 GMT</pubDate>
    <dc:creator>RandomJoe</dc:creator>
    <dc:date>2019-05-24T15:21:05Z</dc:date>
    <item>
      <title>Using ALLCROSSFILTERED with CALCULATE</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-ALLCROSSFILTERED-with-CALCULATE/m-p/698749#M750</link>
      <description>&lt;P&gt;According to the documentation (&lt;A href="https://docs.microsoft.com/en-us/dax/allcrossfiltered-function-dax" target="_blank" rel="noopener"&gt;https://docs.microsoft.com/en-us/dax/allcrossfiltered-function-dax&lt;/A&gt;) I should be able to use ALLCROSSFILTERED within a CALCULATE, but I'm getting an error that it failed to resolve name 'ALLCROSSFILTERED' in the following measure:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Count All Employees = CALCULATE(SUM('Employee Dim'[Custodian Count]), ALLCROSSFILTERED('Employee Dim'))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can someone help me here?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the end, what I am trying to do is select the name of the person from the Employee dimension for the USERNAME() that is logged in, so I need to remove all the filters that may have been applied. The ALL() function only does it for filters applied directly to that table and not for any related tables.&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2019 20:16:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-ALLCROSSFILTERED-with-CALCULATE/m-p/698749#M750</guid>
      <dc:creator>RandomJoe</dc:creator>
      <dc:date>2019-05-23T20:16:58Z</dc:date>
    </item>
    <item>
      <title>Re: Using ALLCROSSFILTERED with CALCULATE</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-ALLCROSSFILTERED-with-CALCULATE/m-p/699532#M762</link>
      <description>&lt;P&gt;For others who may have this question, I have a partial solution:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Logged In User = CALCULATE(SELECTEDVALUE('Employee Dim'[Custodian Name]),FILTER(ALL('Employee Dim'),[Custodian Email]=USERPRINCIPALNAME()),&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;ALL('Connected Client Fact')&lt;/STRONG&gt;&lt;/FONT&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;By using a second filter on the central Fact table I was able to remove any crossfiltering that was occuring on the Employee dimension.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;You'll note that this solution is predecated on the point that there is a central table. This would not have worked if I needed data from the Fact table. If that were the case I would need to remove all the filters individually from each connected dimension.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;I hope an expert can tell me why ALLCROSSFILTERED is not working.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 24 May 2019 15:21:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-ALLCROSSFILTERED-with-CALCULATE/m-p/699532#M762</guid>
      <dc:creator>RandomJoe</dc:creator>
      <dc:date>2019-05-24T15:21:05Z</dc:date>
    </item>
    <item>
      <title>Re: Using ALLCROSSFILTERED with CALCULATE</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-ALLCROSSFILTERED-with-CALCULATE/m-p/807557#M5053</link>
      <description>&lt;P&gt;I'm experiencing the same issue. One assumption of mine is that it has to do with the version of the SSAS which has not been updated with the latest cumulative updates and thus not supports the newest DAX functions listed here:&amp;nbsp;&lt;A href="https://docs.microsoft.com/en-us/dax/new-dax-functions" target="_blank"&gt;https://docs.microsoft.com/en-us/dax/new-dax-functions&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Oct 2019 06:05:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-ALLCROSSFILTERED-with-CALCULATE/m-p/807557#M5053</guid>
      <dc:creator>marcushenningse</dc:creator>
      <dc:date>2019-10-02T06:05:16Z</dc:date>
    </item>
  </channel>
</rss>

