<?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: Allexcept on multiple dimensions in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Allexcept-on-multiple-dimensions/m-p/2016068#M44853</link>
    <description>&lt;P&gt;Do you have a separate &lt;A href="https://radacad.com/do-you-need-a-date-dimension" target="_blank"&gt;date dimension table&lt;/A&gt;? I'd guess not given this behavior but I would strongly recommend creating one.&lt;/P&gt;</description>
    <pubDate>Fri, 13 Aug 2021 20:27:14 GMT</pubDate>
    <dc:creator>AlexisOlson</dc:creator>
    <dc:date>2021-08-13T20:27:14Z</dc:date>
    <item>
      <title>Allexcept on multiple dimensions</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Allexcept-on-multiple-dimensions/m-p/2016020#M44851</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Got this problem I can not figure out, so hopefully someone can assist me with this. Below is a screenshot from a matrix visualisation on a simplified data model that shows my problem.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For each product I would need to get the product's percentage of the total sales within the product group each month.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The Allexcept_Productmeasure shown below gives the result 330 in January for product group A and 10 for product group B. These figures are however the total amounts for all the periods in the data set. I would need the measure to show 180 (A) and 10 (B) in January. There is one-to-many relationship between a Calendar table and the Volume table&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have tried to add another "ALLEXCEPT" for the time dimension, but I can't get this to work. Apparently "ALLEXCEPT" cannot be used on mutiple dimensions, but what would be the best solution to get the results I need?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&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;Best regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Chris&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;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Aug 2021 20:01:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Allexcept-on-multiple-dimensions/m-p/2016020#M44851</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-08-13T20:01:07Z</dc:date>
    </item>
    <item>
      <title>Re: Allexcept on multiple dimensions</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Allexcept-on-multiple-dimensions/m-p/2016068#M44853</link>
      <description>&lt;P&gt;Do you have a separate &lt;A href="https://radacad.com/do-you-need-a-date-dimension" target="_blank"&gt;date dimension table&lt;/A&gt;? I'd guess not given this behavior but I would strongly recommend creating one.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Aug 2021 20:27:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Allexcept-on-multiple-dimensions/m-p/2016068#M44853</guid>
      <dc:creator>AlexisOlson</dc:creator>
      <dc:date>2021-08-13T20:27:14Z</dc:date>
    </item>
    <item>
      <title>Re: Allexcept on multiple dimensions</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Allexcept-on-multiple-dimensions/m-p/2016072#M44854</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="39298" data-lia-user-login="AlexisOlson" class="lia-mention lia-mention-user"&gt;AlexisOlson&lt;/a&gt;&amp;nbsp;Hi, yes, I have a separate date dimension table and a one-to-many relation between the tables.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Aug 2021 20:31:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Allexcept-on-multiple-dimensions/m-p/2016072#M44854</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-08-13T20:31:34Z</dc:date>
    </item>
    <item>
      <title>Re: Allexcept on multiple dimensions</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Allexcept-on-multiple-dimensions/m-p/2016085#M44855</link>
      <description>&lt;P&gt;OK. In that case, the &lt;A href="https://dax.guide/allexcept/" target="_blank"&gt;guide here&lt;/A&gt; indicates that you can include it within ALLEXCEPT since it's part of the expanded table.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Allexcep_Productgroup =
CALCULATE (
    [Sales],
    ALLEXCEPT ( volume, dim_date, volume[productgroup] )
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Aug 2021 20:45:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Allexcept-on-multiple-dimensions/m-p/2016085#M44855</guid>
      <dc:creator>AlexisOlson</dc:creator>
      <dc:date>2021-08-13T20:45:35Z</dc:date>
    </item>
    <item>
      <title>Re: Allexcept on multiple dimensions</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Allexcept-on-multiple-dimensions/m-p/2016221#M44863</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="39298" data-lia-user-login="AlexisOlson" class="lia-mention lia-mention-user"&gt;AlexisOlson&lt;/a&gt;&amp;nbsp;Hi, Thanks a lot, that did the trick!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 14 Aug 2021 02:36:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Allexcept-on-multiple-dimensions/m-p/2016221#M44863</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-08-14T02:36:30Z</dc:date>
    </item>
  </channel>
</rss>

