<?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: How to fix this Slicer/Measure issue? Sample dataset provided in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-fix-this-Slicer-Measure-issue-Sample-dataset-provided/m-p/2633079#M77097</link>
    <description>&lt;P&gt;You would need to check within each measure whether there is a single value selected for the invoice type, and if it matches the relevant category, e.g.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;E-Billing # = IF( SELECTEDVALUE(Table1[Entry_Source_Category]) = "E-BILLING", CALCULATE(SUM(Table1[NrInvoices])))&lt;/LI-CODE&gt;</description>
    <pubDate>Tue, 12 Jul 2022 08:54:37 GMT</pubDate>
    <dc:creator>johnt75</dc:creator>
    <dc:date>2022-07-12T08:54:37Z</dc:date>
    <item>
      <title>How to fix this Slicer/Measure issue? Sample dataset provided</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-fix-this-Slicer-Measure-issue-Sample-dataset-provided/m-p/2631556#M76999</link>
      <description>&lt;P&gt;Hello community&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am having the bellow issue in a current report.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a table with XWY Dimensions and as columns I am using some measures to calculate the amount of invocies received via the different "entry source channels".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;On the right side I have a slicer that I want to use it to filter the rawdata, therefore what I do not understand is why even though I filter for example "Manual" invoices I still see the values of ther other categories.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A shorter version of the example can be found in my PBI file.&lt;/P&gt;&lt;P&gt;&lt;A href="https://drive.google.com/file/d/1Aoz_9C_CUt0aMk_iX18t0eZqMWuYq0fw/view?usp=sharing" target="_blank"&gt;https://drive.google.com/file/d/1Aoz_9C_CUt0aMk_iX18t0eZqMWuYq0fw/view?usp=sharing&lt;/A&gt;&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;Thanks a lot and looking forward for your help-.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jul 2022 15:28:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-fix-this-Slicer-Measure-issue-Sample-dataset-provided/m-p/2631556#M76999</guid>
      <dc:creator>varelapablo90</dc:creator>
      <dc:date>2022-07-11T15:28:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to fix this Slicer/Measure issue? Sample dataset provided</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-fix-this-Slicer-Measure-issue-Sample-dataset-provided/m-p/2631684#M77004</link>
      <description>&lt;P&gt;The filter for manual is being applied to the whole table, so you are only seeing vendors who have at least 1 Manul entry. Within your measures you are explicitly filtering for just the appropriate entry type, so you are showing e.g. the number of ebilling invoices for those vendors who have at least 1 Manual entry.&lt;/P&gt;&lt;P&gt;The numbers your measures are showing are correct, you just need to understand the context.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jul 2022 16:15:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-fix-this-Slicer-Measure-issue-Sample-dataset-provided/m-p/2631684#M77004</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2022-07-11T16:15:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to fix this Slicer/Measure issue? Sample dataset provided</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-fix-this-Slicer-Measure-issue-Sample-dataset-provided/m-p/2632992#M77086</link>
      <description>&lt;P&gt;If my whole dataset is being filtered by the slicer why would it show the figures from data that is not selected?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How can I make it work on the way I want?&lt;/P&gt;&lt;P&gt;By the way the raw data is on Invoice level&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jul 2022 08:24:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-fix-this-Slicer-Measure-issue-Sample-dataset-provided/m-p/2632992#M77086</guid>
      <dc:creator>varelapablo90</dc:creator>
      <dc:date>2022-07-12T08:24:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to fix this Slicer/Measure issue? Sample dataset provided</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-fix-this-Slicer-Measure-issue-Sample-dataset-provided/m-p/2633079#M77097</link>
      <description>&lt;P&gt;You would need to check within each measure whether there is a single value selected for the invoice type, and if it matches the relevant category, e.g.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;E-Billing # = IF( SELECTEDVALUE(Table1[Entry_Source_Category]) = "E-BILLING", CALCULATE(SUM(Table1[NrInvoices])))&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 12 Jul 2022 08:54:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-fix-this-Slicer-Measure-issue-Sample-dataset-provided/m-p/2633079#M77097</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2022-07-12T08:54:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to fix this Slicer/Measure issue? Sample dataset provided</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-fix-this-Slicer-Measure-issue-Sample-dataset-provided/m-p/2637851#M77376</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="302361" data-lia-user-login="varelapablo90" class="lia-mention lia-mention-user"&gt;varelapablo90&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Please refer to the pbix file to see if it helps you.&lt;/P&gt;
&lt;P&gt;Modify the&amp;nbsp; measures.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;_EBILLING_INV = VAR _1= CALCULATE(sum(Table1[NrInvoices]), Table1[Entry_Source_Category] = "E-BILLING")
RETURN
IF(HASONEVALUE(Table1[Entry_Source_Category])&amp;amp;&amp;amp;MAX(Table1[Entry_Source_Category])= "E-BILLING",_1,BLANK())&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;_FASTENTRY_INV = VAR _1= CALCULATE(sum(Table1[NrInvoices]),Table1[Entry_Source_Category] = "FAST ENTRY")
RETURN
IF(HASONEVALUE(Table1[Entry_Source_Category])&amp;amp;&amp;amp;MAX(Table1[Entry_Source_Category])="FAST ENTRY",_1,BLANK())&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;_MANUAL_INV = var _a= CALCULATE(sum(Table1[NrInvoices]),Table1[Entry_Source_Category] = "MANUAL")
return 
IF(HASONEVALUE(Table1[Entry_Source_SubCategory])&amp;amp;&amp;amp;MAX(Table1[Entry_Source_Category])="MANUAL",_a,BLANK())&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;_OCR = VAR _1= CALCULATE(sum(Table1[NrInvoices]),Table1[Entry_Source_Category] = "OCR")
RETURN
IF(HASONEVALUE(Table1[Entry_Source_Category])&amp;amp;&amp;amp;MAX(Table1[Entry_Source_Category])="OCR",_1,BLANK())&lt;/LI-CODE&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;If I have misunderstood your meaning, provide more details with your desired output.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards&lt;/P&gt;
&lt;P&gt;Community Support Team _ Polly&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jul 2022 06:17:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-fix-this-Slicer-Measure-issue-Sample-dataset-provided/m-p/2637851#M77376</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-07-14T06:17:26Z</dc:date>
    </item>
  </channel>
</rss>

