<?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: Filter for multiple values in one cell in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-for-multiple-values-in-one-cell/m-p/3097980#M108786</link>
    <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;&amp;nbsp;&amp;nbsp;Trust that you well. Not sure if I should create a brand new entry or keep my next question in this current response flow.&lt;/P&gt;&lt;P&gt;I am trying to edit the original DAX you created for me to include a new column called BE Size and the visual is only returning the count of BE and not showing the sum of the Story Points per BE size. See information I used below to inform my challenge.&lt;/P&gt;&lt;P&gt;Sum of BE Size&lt;/P&gt;&lt;P&gt;&lt;U&gt;Table&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;FilterTable&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;DAX&lt;/U&gt;&lt;/P&gt;&lt;P&gt;Count of BE Size =&lt;/P&gt;&lt;P&gt;CALCULATE (&lt;/P&gt;&lt;P&gt;COUNTROWS ( VALUES ( 'Table'[BE Key] ) ),&lt;/P&gt;&lt;P&gt;FILTER (&lt;/P&gt;&lt;P&gt;'Table',&lt;/P&gt;&lt;P&gt;VAR SelectedValues =&lt;/P&gt;&lt;P&gt;VALUES ( FilterTable[Item Value] )&lt;/P&gt;&lt;P&gt;VAR String = 'Table'[Fixed Version]&lt;/P&gt;&lt;P&gt;VAR Items =&lt;/P&gt;&lt;P&gt;SUBSTITUTE ( String, ", ", "|" )&lt;/P&gt;&lt;P&gt;VAR Length =&lt;/P&gt;&lt;P&gt;COALESCE ( PATHLENGTH ( Items ), 1 )&lt;/P&gt;&lt;P&gt;VAR T1 =&lt;/P&gt;&lt;P&gt;GENERATESERIES ( 1, Length, 1 )&lt;/P&gt;&lt;P&gt;VAR T2 =&lt;/P&gt;&lt;P&gt;SELECTCOLUMNS ( T1, "@Item", PATHITEM ( Items, [Value] ) )&lt;/P&gt;&lt;P&gt;RETURN&lt;/P&gt;&lt;P&gt;NOT ISEMPTY ( INTERSECT ( T2, SelectedValues ) ) &amp;amp;&amp;amp; 'Table'[BE Size]&lt;/P&gt;&lt;P&gt;))+0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;Visual&lt;/U&gt;&lt;/P&gt;&lt;P&gt;How do I refine the DAX so that the Visual displays the Data Labels as Count of Size ie, 100 or 200 and the Total Labels to show size ie. 100 or 200, etc?&lt;/P&gt;&lt;P&gt;Note: The current visual isn’t reflecting the correct count.&lt;/P&gt;&lt;P&gt;Y23PI1 should show a stacked bar of 100 and 200 and the total label to show 300.&lt;/P&gt;&lt;P&gt;Y23PI2 should show a stacked bar of 200 and the total label to show 200&lt;/P&gt;&lt;P&gt;Y23PI3 should show a stacked bar of 200 and a total label of 200&lt;/P&gt;&lt;P&gt;Y23PI4 should show a stacked bar of 100 and a total label of 100&lt;/P&gt;&lt;P&gt;Y23PI5 should show a stacked bar of 250 and a total label of 250&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 24 Feb 2023 12:42:34 GMT</pubDate>
    <dc:creator>KubenM</dc:creator>
    <dc:date>2023-02-24T12:42:34Z</dc:date>
    <item>
      <title>Filter for multiple values in one cell</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-for-multiple-values-in-one-cell/m-p/2608847#M75596</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i have a data model in which the main table sometimes includes columns in which several values are included in one cell to minimize the numer of rows and columns needed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;e.g.&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;STRONG&gt;Risks&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;IT-Protection Goals&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;G0.1; G0.2; G0.45; G036&lt;/TD&gt;&lt;TD&gt;C; I; A&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;G0.8; G0.1; G0.2;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;C; A&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;...&lt;/TD&gt;&lt;TD&gt;I&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I know want PowerBI to detect e.g. G0.2 in one of the cells and not view the content of the cell as one value. I know that I could split the data into several columns but I specifially want to avoid that and put all the individual values into one cell.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Help of any kind would be highly appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best&lt;/P&gt;&lt;P&gt;Justus&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jun 2022 08:54:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-for-multiple-values-in-one-cell/m-p/2608847#M75596</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-06-29T08:54:12Z</dc:date>
    </item>
    <item>
      <title>Re: Filter for multiple values in one cell</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-for-multiple-values-in-one-cell/m-p/2609026#M75606</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;The idea&amp;nbsp;is applicable and can be achieved. Please provide an example of what exactly are you trying to achieve?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jun 2022 09:37:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-for-multiple-values-in-one-cell/m-p/2609026#M75606</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-06-29T09:37:13Z</dc:date>
    </item>
    <item>
      <title>Re: Filter for multiple values in one cell</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-for-multiple-values-in-one-cell/m-p/2609098#M75613</link>
      <description>&lt;P&gt;Thx for your resposne. I'm e.g. trying to display the top5 risks. Another example would be to give a more detailed view on the risks by connecting another table where each risk is listed with more dteailed information. In general I just want to work with the individual values, use them in visuals, ect.&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jun 2022 09:57:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-for-multiple-values-in-one-cell/m-p/2609098#M75613</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-06-29T09:57:04Z</dc:date>
    </item>
    <item>
      <title>Re: Filter for multiple values in one cell</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-for-multiple-values-in-one-cell/m-p/2609646#M75645</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Sorry for the late reply. Here is a sample file for your reference&amp;nbsp;&lt;A href="https://we.tl/t-ROzVPTGfiW" target="_blank"&gt;https://we.tl/t-ROzVPTGfiW&lt;/A&gt;&lt;/P&gt;&lt;P&gt;The first thing to to is to extract the unique&amp;nbsp;values of each column:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Then the rest would be simple. Here are some examples of what can be calculated.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Please provide more realistic sample of data and&amp;nbsp;advise exactly what is required in order to support you further. Thank you&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jun 2022 13:45:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-for-multiple-values-in-one-cell/m-p/2609646#M75645</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-06-29T13:45:21Z</dc:date>
    </item>
    <item>
      <title>Re: Filter for multiple values in one cell</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-for-multiple-values-in-one-cell/m-p/2661414#M78925</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;，&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Has this question been solved? If tamerj1's answer is helpful, please consider marking his answer as a solution, which will help more people find the answer faster. Thanks in advance!&lt;span class="lia-unicode-emoji" title=":smiling_face_with_smiling_eyes:"&gt;😊&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2"&gt;Best Regards,&lt;BR /&gt;Gao&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;Community Support Team&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2"&gt;If there is any post&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;FONT size="3" style="--darkreader-inline-color: #c72825;" color="#FF0000" data-darkreader-inline-color=""&gt;&lt;EM&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;&lt;/EM&gt;&lt;/FONT&gt;, then please consider&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;FONT size="3"&gt;&lt;FONT style="--darkreader-inline-color: #c72825;" color="#FF0000" data-darkreader-inline-color=""&gt;&lt;EM&gt;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&lt;/EM&gt;&lt;/FONT&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know.&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;&lt;FONT size="3"&gt;Thanks a lot!&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2" style="--darkreader-inline-color: #c72825;" color="#FF0000" data-darkreader-inline-color=""&gt;&lt;A href="https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490" target="_blank" rel="noopener"&gt;&lt;SPAN&gt;How to get your questions answered quickly&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;--&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://community.powerbi.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-p/963216" target="_blank" rel="noopener"&gt;&lt;SPAN&gt;How to provide sample data&lt;/SPAN&gt;&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jul 2022 09:15:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-for-multiple-values-in-one-cell/m-p/2661414#M78925</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-07-26T09:15:53Z</dc:date>
    </item>
    <item>
      <title>Re: Filter for multiple values in one cell</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-for-multiple-values-in-one-cell/m-p/3060139#M105688</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;I have a similar challenge. I am trying to stay away from complex DAX.&lt;BR /&gt;I have a filter setup for Increment that uses a Fact Table that has the following individual values defined:&lt;/P&gt;&lt;P&gt;Y23PI1&lt;/P&gt;&lt;P&gt;Y23PI2&lt;/P&gt;&lt;P&gt;Y23PI3&lt;/P&gt;&lt;P&gt;Y23PI4&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My dimension table reflects that some rows have mulitple Increments in the same cell for example: Y23PI1, Y23PI2 or Y23PI2, Y23PI3, Y24PI4&lt;/P&gt;&lt;P&gt;As my filter only references single Increments, when I filter on Y23PI1 or Y23PI2, Power Bi returns zero as it can't find the single Increments.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please assist if possible.&lt;/P&gt;&lt;P&gt;Kind Regards&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Feb 2023 10:35:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-for-multiple-values-in-one-cell/m-p/3060139#M105688</guid>
      <dc:creator>KubenM</dc:creator>
      <dc:date>2023-02-03T10:35:06Z</dc:date>
    </item>
    <item>
      <title>Re: Filter for multiple values in one cell</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-for-multiple-values-in-one-cell/m-p/3060173#M105695</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="479556" data-lia-user-login="KubenM" class="lia-mention lia-mention-user"&gt;KubenM&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;I don't beleive there is any solution other than DAX. However it is not as complex as you might think. Please refer to attached sample file with the proposed solution&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;Filter Measure = 
VAR SelectedValues = VALUES ( FilterTable[Item Value] )
VAR String = SELECTEDVALUE ( 'Table'[Item Values] )
VAR Items = SUBSTITUTE ( String, ", ", "|" )
VAR Length = COALESCE ( PATHLENGTH ( Items ), 1 )
VAR T1 = GENERATESERIES ( 1, Length, 1 )
VAR T2 = SELECTCOLUMNS ( T1, "@Item", PATHITEM ( Items, [Value] ) )
RETURN
    COUNTROWS ( INTERSECT ( T2, SelectedValues ) )&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 03 Feb 2023 11:04:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-for-multiple-values-in-one-cell/m-p/3060173#M105695</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-02-03T11:04:42Z</dc:date>
    </item>
    <item>
      <title>Re: Filter for multiple values in one cell</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-for-multiple-values-in-one-cell/m-p/3060320#M105717</link>
      <description>&lt;P&gt;Thank you so much for your solution to my problem. This is absolutely brilliant and is exactly what i required. Much appreciated. WoW.&lt;/P&gt;</description>
      <pubDate>Fri, 03 Feb 2023 13:14:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-for-multiple-values-in-one-cell/m-p/3060320#M105717</guid>
      <dc:creator>KubenM</dc:creator>
      <dc:date>2023-02-03T13:14:50Z</dc:date>
    </item>
    <item>
      <title>Re: Filter for multiple values in one cell</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-for-multiple-values-in-one-cell/m-p/3068029#M106308</link>
      <description>&lt;P&gt;Hello tamerj1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I applied the DAX to the Matrix and the filtering works perfectly. I now have a challenge with applying the same DAX to the Pie charts and Bar Charts that are on the same Report. I am not able to filter these visuals by Increment.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Would you be able to add another column to the data table and add for example # of Sales and create the two visuals and apply the Filter Measure to these visuals so that I can follow your example.&lt;/P&gt;&lt;P&gt;And is there a way to sum each increment on the Pie chart when I filter on for example&amp;nbsp; Y23PI1 so that the PIE chart shows a complete PIE as a sum of the vaules(# of Sales) for Increment Y23PI1 and not show me Y23PI1 in muliple slices of the PIE based on how the Item Values are distributed. When I select Y23PI1 and Y23P2, I would like the PIE chart to show two slices ie one slice for each Increment. I hope that makes sense.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Much appreciated.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Feb 2023 07:18:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-for-multiple-values-in-one-cell/m-p/3068029#M106308</guid>
      <dc:creator>KubenM</dc:creator>
      <dc:date>2023-02-08T07:18:57Z</dc:date>
    </item>
    <item>
      <title>Re: Filter for multiple values in one cell</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-for-multiple-values-in-one-cell/m-p/3068056#M106312</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="479556" data-lia-user-login="KubenM" class="lia-mention lia-mention-user"&gt;KubenM&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Seems to be working just fine!&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Feb 2023 07:13:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-for-multiple-values-in-one-cell/m-p/3068056#M106312</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-02-08T07:13:39Z</dc:date>
    </item>
    <item>
      <title>Re: Filter for multiple values in one cell</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-for-multiple-values-in-one-cell/m-p/3068120#M106315</link>
      <description>&lt;P&gt;Hello Again&lt;/P&gt;&lt;P&gt;Thank you for your speedy response.&lt;/P&gt;&lt;P&gt;With reference to the PIE chart in the screen shot below, and the selection of Filter option Y23PI1 on the filter, I would like the PIE Chart to show me the count of 1 and the legend to show Y23PI1 and not 3 slices of the pie.&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Feb 2023 07:39:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-for-multiple-values-in-one-cell/m-p/3068120#M106315</guid>
      <dc:creator>KubenM</dc:creator>
      <dc:date>2023-02-08T07:39:25Z</dc:date>
    </item>
    <item>
      <title>Re: Filter for multiple values in one cell</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-for-multiple-values-in-one-cell/m-p/3068129#M106317</link>
      <description>&lt;P&gt;The bar chart should also only show the values for one Increment per bar.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Feb 2023 07:33:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-for-multiple-values-in-one-cell/m-p/3068129#M106317</guid>
      <dc:creator>KubenM</dc:creator>
      <dc:date>2023-02-08T07:33:54Z</dc:date>
    </item>
    <item>
      <title>Re: Filter for multiple values in one cell</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-for-multiple-values-in-one-cell/m-p/3068167#M106321</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="479556" data-lia-user-login="KubenM" class="lia-mention lia-mention-user"&gt;KubenM&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Why the count should be 1 not 3? And for the bar chart, what do you mean by "&lt;EM&gt;one increment&amp;nbsp;per bar&lt;/EM&gt;"?&lt;/P&gt;</description>
      <pubDate>Wed, 08 Feb 2023 07:46:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-for-multiple-values-in-one-cell/m-p/3068167#M106321</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-02-08T07:46:58Z</dc:date>
    </item>
    <item>
      <title>Re: Filter for multiple values in one cell</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-for-multiple-values-in-one-cell/m-p/3068247#M106334</link>
      <description>&lt;P&gt;Here's what I am trying to achieve with Product Increments using the SAFe Methodology:&lt;/P&gt;&lt;P&gt;In JIRA we have a number of Business Epics that Teams plan in each PI by capturing in the Fixed Version field on the Business Epic field using the standard Increments names(Y23PI1, Y23PI2, Y23PI3, etc.)&lt;/P&gt;&lt;P&gt;So if a Team plans a Business Epic(BE-1) in Product Increment Y23PI1 then my PIE chart when I filter on Y23PI1 should show 1.&lt;/P&gt;&lt;P&gt;When this Business Epic isn't completed in Y23PI1, teams then add the next PI, Y23PI2 to the Fixed Version field on BE-1 to show that the Business Epic was in Y23PI1 and now is in Y23PI2.&lt;/P&gt;&lt;P&gt;So there is only one Business Epic being worked on. When I filter on Y23PI1 the PIE chart should not show me 2 slices ie one for "Y23PI1" and another for "Y23PI1, Y23PI2". It should only show me 1 when I filter on Y23PI1 and should show 1 when I filter on Y23PI2. The filter show never be a combination of the 2 PIs.&lt;/P&gt;&lt;P&gt;The Business Epic(BE-1) is the unique key that I pull through per PI.&lt;/P&gt;&lt;P&gt;So Portfolio Managers want to filter per PI and not a combination of PIs.&lt;/P&gt;&lt;P&gt;I hope this helps explain.&lt;BR /&gt;Note: I can share an example of my file with you but I have no idea how to upload a file to my reply.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Feb 2023 08:19:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-for-multiple-values-in-one-cell/m-p/3068247#M106334</guid>
      <dc:creator>KubenM</dc:creator>
      <dc:date>2023-02-08T08:19:44Z</dc:date>
    </item>
    <item>
      <title>Re: Filter for multiple values in one cell</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-for-multiple-values-in-one-cell/m-p/3068300#M106337</link>
      <description>&lt;P&gt;So all the visuals should show data per a defined list of PI dates:&lt;/P&gt;&lt;P&gt;Y23PI1&lt;/P&gt;&lt;P&gt;Y23PI2&lt;/P&gt;&lt;P&gt;Y23PI3&lt;/P&gt;&lt;P&gt;Y23PI4&lt;/P&gt;&lt;P&gt;Y23PI5&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Each Bar visual should therefore only show these defined PI dates and not show for example a combination of PI dates like a column for "Y23PI1, Y23PI2" and another column showing 3 PI dates.&lt;/P&gt;&lt;P&gt;Based on my previous comment, we would like to see how many Business Epics have been planned per PI even if the same Business Epic rolled over from one PI to PI. So the key here is to show the single PI date and how many Business Epics were planned in that particular PI date.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Feb 2023 08:35:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-for-multiple-values-in-one-cell/m-p/3068300#M106337</guid>
      <dc:creator>KubenM</dc:creator>
      <dc:date>2023-02-08T08:35:56Z</dc:date>
    </item>
    <item>
      <title>Re: Filter for multiple values in one cell</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-for-multiple-values-in-one-cell/m-p/3068314#M106338</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="479556" data-lia-user-login="KubenM" class="lia-mention lia-mention-user"&gt;KubenM&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;I think a sample data with multiple BE's and PI's along with the expected result will better explain the problem. One example that produces a count of 1 drives to think what is the use of such pie chart that is just a circle with the number 1&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":grinning_face_with_sweat:"&gt;😅&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I know there is much more in that.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Feb 2023 08:40:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-for-multiple-values-in-one-cell/m-p/3068314#M106338</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-02-08T08:40:29Z</dc:date>
    </item>
    <item>
      <title>Re: Filter for multiple values in one cell</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-for-multiple-values-in-one-cell/m-p/3068321#M106339</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="479556" data-lia-user-login="KubenM" class="lia-mention lia-mention-user"&gt;KubenM&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;This is exactly what I though. Please provide a reasonable set of sample dummy data that simulates the situation in order to work with.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Feb 2023 08:43:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-for-multiple-values-in-one-cell/m-p/3068321#M106339</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-02-08T08:43:47Z</dc:date>
    </item>
    <item>
      <title>Re: Filter for multiple values in one cell</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-for-multiple-values-in-one-cell/m-p/3068411#M106346</link>
      <description>&lt;P&gt;I hope this illustration helps.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Feb 2023 09:10:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-for-multiple-values-in-one-cell/m-p/3068411#M106346</guid>
      <dc:creator>KubenM</dc:creator>
      <dc:date>2023-02-08T09:10:12Z</dc:date>
    </item>
    <item>
      <title>Re: Filter for multiple values in one cell</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-for-multiple-values-in-one-cell/m-p/3068822#M106386</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="479556" data-lia-user-login="KubenM" class="lia-mention lia-mention-user"&gt;KubenM&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Sorry for the late response. I was trapped in a couple of meetings. I hope the following is what you're looking for.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;Count of BE Key = 
CALCULATE ( 
    COUNTROWS ( VALUES ( 'Table'[BE Key] ) ),
    FILTER ( 
        'Table',
        VAR SelectedValues = VALUES ( FilterTable[Item Value] )
        VAR String = 'Table'[Fixed Version]
        VAR Items = SUBSTITUTE ( String, " , ", "|" )
        VAR Length = COALESCE ( PATHLENGTH ( Items ), 1 )
        VAR T1 = GENERATESERIES ( 1, Length, 1 )
        VAR T2 = SELECTCOLUMNS ( T1, "@Item", PATHITEM ( Items, [Value] ) )
        RETURN
            COUNTROWS ( INTERSECT ( T2, SelectedValues ) ) 
    )
)&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 08 Feb 2023 12:09:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-for-multiple-values-in-one-cell/m-p/3068822#M106386</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-02-08T12:09:39Z</dc:date>
    </item>
    <item>
      <title>Re: Filter for multiple values in one cell</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-for-multiple-values-in-one-cell/m-p/3071051#M106589</link>
      <description>&lt;P&gt;Dear tamerj1&lt;/P&gt;&lt;P&gt;Thank you for all your efforts in this regard. I am going to play around with the information you provided and will let you know if it works.&lt;BR /&gt;The last pie chart and bar chart on your reply is what I am looking for. Hopefully I can apply the DAX and make the visuals respond to the 5 unique filter dates.&lt;BR /&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Thu, 09 Feb 2023 07:08:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-for-multiple-values-in-one-cell/m-p/3071051#M106589</guid>
      <dc:creator>KubenM</dc:creator>
      <dc:date>2023-02-09T07:08:59Z</dc:date>
    </item>
  </channel>
</rss>

