<?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 do I group (count) all the incident tickets with a multiple values in a column? in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-do-I-group-count-all-the-incident-tickets-with-a-multiple/m-p/4307804#M171075</link>
    <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your reply!!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I know the company I work for is using an older version of Power BI Desktop and I am not able to make this work for some reason. The company restricted the upgrade due to HIPAA compliance.&amp;nbsp; I notice in your current version, you have what is called Measure Tools. I don't &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; I am not sure if this is causing an issue for my Power BI version?&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;&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;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 29 Nov 2024 14:55:59 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2024-11-29T14:55:59Z</dc:date>
    <item>
      <title>How do I group (count) all the incident tickets with a multiple values in a column?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-do-I-group-count-all-the-incident-tickets-with-a-multiple/m-p/4300098#M170759</link>
      <description>&lt;P&gt;I have quite a bit of tickets that have multiple values in a column that are not in any order. Yet, I can't group these as 'Multiple HPs Selected'.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can see in the snapshot that the tickets with single select of HP are counted just fine but the ones in the smaller data numbers have the multiple values, I need these grouped/Counted together regardless the order of the HPs selected.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Column is 'HP Selected' and I just want the multiple values as 'Multiple HPs Selected' and group/counted from there.&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;Thank you!&lt;/P&gt;</description>
      <pubDate>Mon, 25 Nov 2024 14:55:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-do-I-group-count-all-the-incident-tickets-with-a-multiple/m-p/4300098#M170759</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-25T14:55:53Z</dc:date>
    </item>
    <item>
      <title>Re: How do I group (count) all the incident tickets with a multiple values in a column?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-do-I-group-count-all-the-incident-tickets-with-a-multiple/m-p/4300683#M170779</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Create a new column which allows you to give each of the 'multiple values' a name that you can group them on whilst leaving the other values unchanged&amp;nbsp; e.g.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="php"&gt;Column = 

SWITCH(

    TRUE(),

    [HP Selected] = "Alpha", "Alpha",

    [HP Selected] = "Beta", "Beta",

    [HP Selected] = "Gamma", "Gamma",

    "Multiple HP's Selected"

)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Which gives this&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;You can then create this visual using the new column&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;If that isn't what you want please supply some sample data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Phil&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>Mon, 25 Nov 2024 23:28:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-do-I-group-count-all-the-incident-tickets-with-a-multiple/m-p/4300683#M170779</guid>
      <dc:creator>PhilipTreacy</dc:creator>
      <dc:date>2024-11-25T23:28:55Z</dc:date>
    </item>
    <item>
      <title>Re: How do I group (count) all the incident tickets with a multiple values in a column?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-do-I-group-count-all-the-incident-tickets-with-a-multiple/m-p/4302468#M170829</link>
      <description>&lt;P&gt;Definitely checking that today - will keep you posted. Thank you!&lt;/P&gt;</description>
      <pubDate>Tue, 26 Nov 2024 15:23:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-do-I-group-count-all-the-incident-tickets-with-a-multiple/m-p/4302468#M170829</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-26T15:23:13Z</dc:date>
    </item>
    <item>
      <title>Re: How do I group (count) all the incident tickets with a multiple values in a column?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-do-I-group-count-all-the-incident-tickets-with-a-multiple/m-p/4302580#M170833</link>
      <description>&lt;P&gt;This error doesn't make sense...&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Nov 2024 16:31:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-do-I-group-count-all-the-incident-tickets-with-a-multiple/m-p/4302580#M170833</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-26T16:31:19Z</dc:date>
    </item>
    <item>
      <title>Re: How do I group (count) all the incident tickets with a multiple values in a column?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-do-I-group-count-all-the-incident-tickets-with-a-multiple/m-p/4302688#M170842</link>
      <description>&lt;P&gt;HI Phil,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Reading upon SWITCH, it sounds like it's a bitty restrictive like not allowing those the same HP with the other HP values in some rows.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But this is what I am looking for. Hope this makes sense?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;And for some odd reason, Power BI is not recognizing the HP Selected in the SWITCH.&lt;/P&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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Nov 2024 17:45:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-do-I-group-count-all-the-incident-tickets-with-a-multiple/m-p/4302688#M170842</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-26T17:45:54Z</dc:date>
    </item>
    <item>
      <title>Re: How do I group (count) all the incident tickets with a multiple values in a column?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-do-I-group-count-all-the-incident-tickets-with-a-multiple/m-p/4302976#M170854</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="264323" data-lia-user-login="PhilipTreacy" class="lia-mention lia-mention-user"&gt;PhilipTreacy&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was thinking this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Would the coding be feasible where:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If no HP was selected, "No HP selected"&lt;/P&gt;&lt;P&gt;If 1 HP selected, USE that value as whatever the HP is&lt;/P&gt;&lt;P&gt;If 2 to 41 HPs selected, "Multiple HPs Selected"&lt;/P&gt;&lt;P&gt;If 42 or over, "All HPs Selected"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This HPs Selected is in a table now...&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am still learning the codings and this isn't my level of expertise yet. I am learning for you all here.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Holly&lt;/P&gt;</description>
      <pubDate>Wed, 27 Nov 2024 01:05:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-do-I-group-count-all-the-incident-tickets-with-a-multiple/m-p/4302976#M170854</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-27T01:05:09Z</dc:date>
    </item>
    <item>
      <title>Re: How do I group (count) all the incident tickets with a multiple values in a column?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-do-I-group-count-all-the-incident-tickets-with-a-multiple/m-p/4305583#M170959</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;, hello&amp;nbsp;PhilipTreacy, thank you for your prompt reply!&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Please check the following measures:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;HP Selection Status = 
VAR HP_Count = 
    IF(
        SELECTEDVALUE('Table'[HP Selected])=BLANK(), 
        0,  
        LEN(SELECTEDVALUE('Table'[HP Selected])) - LEN(SUBSTITUTE(SELECTEDVALUE('Table'[HP Selected]), ",", "")) + 1  
    )
RETURN

    IF(
        HP_Count = 0, 
        "No HP Selected",  
        IF(
            HP_Count = 1, 
            SELECTEDVALUE('Table'[HP Selected]),  
            IF(
                HP_Count &amp;lt;= 41, 
                "Multiple HPs Selected",  
                "All HPs Selected"  
            )
        )
    )
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;Result for your reference:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Joyce&lt;/P&gt;
&lt;P&gt;If this post&amp;nbsp;&lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider&amp;nbsp;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&amp;nbsp;to help the other members find it more quickly.&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Nov 2024 07:14:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-do-I-group-count-all-the-incident-tickets-with-a-multiple/m-p/4305583#M170959</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-28T07:14:11Z</dc:date>
    </item>
    <item>
      <title>Re: How do I group (count) all the incident tickets with a multiple values in a column?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-do-I-group-count-all-the-incident-tickets-with-a-multiple/m-p/4307804#M171075</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;Thank you for your reply!!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I know the company I work for is using an older version of Power BI Desktop and I am not able to make this work for some reason. The company restricted the upgrade due to HIPAA compliance.&amp;nbsp; I notice in your current version, you have what is called Measure Tools. I don't &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; I am not sure if this is causing an issue for my Power BI version?&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;&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;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Nov 2024 14:55:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-do-I-group-count-all-the-incident-tickets-with-a-multiple/m-p/4307804#M171075</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-29T14:55:59Z</dc:date>
    </item>
    <item>
      <title>Re: How do I group (count) all the incident tickets with a multiple values in a column?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-do-I-group-count-all-the-incident-tickets-with-a-multiple/m-p/4309063#M171124</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Please note that I created the measures instead of the column, please check it:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;More information about difference between calculated column and measure for your reference:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://endjin.com/blog/2022/04/measures-vs-calculated-columns-in-dax" target="_blank"&gt;Measures vs Calculated Columns in DAX and Power BI | endjin - Azure Data Analytics Consultancy UK&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Joyce&lt;/P&gt;
&lt;P&gt;If this post&amp;nbsp;&lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider&amp;nbsp;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&amp;nbsp;to help the other members find it more quickly&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Dec 2024 02:42:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-do-I-group-count-all-the-incident-tickets-with-a-multiple/m-p/4309063#M171124</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-12-02T02:42:45Z</dc:date>
    </item>
    <item>
      <title>Re: How do I group (count) all the incident tickets with a multiple values in a column?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-do-I-group-count-all-the-incident-tickets-with-a-multiple/m-p/4310141#M171168</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ahhh! Ok, I fixed it and I can now see it in a Table in report view. Thank you for that education! My brain is still processing the link you provided. I am still learning this stuff.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thou, I am not able to pull the data into the Y-axis of a stacked bar chart. Automatically went to tooltips box. Not sure why that is? Did I miss something from the link to why this wouldn't work?&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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Dec 2024 16:04:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-do-I-group-count-all-the-incident-tickets-with-a-multiple/m-p/4310141#M171168</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-12-02T16:04:46Z</dc:date>
    </item>
    <item>
      <title>Re: How do I group (count) all the incident tickets with a multiple values in a column?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-do-I-group-count-all-the-incident-tickets-with-a-multiple/m-p/4310644#M171192</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;Measures in DAX are context-dependent calculations, meaning their values are determined by the context in which they are used.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Because of this, measures do not have fixed values and cannot be directly used for grouping or stacking in visualizations like stacked bar charts.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;In this situation, we need to use calculated column to ensure the values are fixed and appropriate for the visualization.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;HP Selection Status Column = 
VAR HP_Count = 
    IF(
        'Table'[HP Selected]=BLANK(), 
        0,  
        LEN('Table'[HP Selected]) - LEN(SUBSTITUTE('Table'[HP Selected], ",", "")) + 1  
    )
RETURN
    IF(
        HP_Count = 0, 
        "No HP Selected",  
        IF(
            HP_Count = 1, 
            'Table'[HP Selected],  
            IF(
                HP_Count &amp;lt;= 41, 
                "Multiple HPs Selected",  
                "All HPs Selected"  
            )
        )
    )
&lt;/LI-CODE&gt;
&lt;P&gt;Result for your reference:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Joyce&lt;/P&gt;
&lt;P&gt;If this post&amp;nbsp;&lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider&amp;nbsp;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&amp;nbsp;to help the other members find it more quickly.&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Dec 2024 01:47:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-do-I-group-count-all-the-incident-tickets-with-a-multiple/m-p/4310644#M171192</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-12-03T01:47:25Z</dc:date>
    </item>
    <item>
      <title>Re: How do I group (count) all the incident tickets with a multiple values in a column?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-do-I-group-count-all-the-incident-tickets-with-a-multiple/m-p/4311808#M171236</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is excellent! It works now and this is a great learning tool from you! Also from&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="264323" data-lia-user-login="PhilipTreacy" class="lia-mention lia-mention-user"&gt;PhilipTreacy&lt;/a&gt;&amp;nbsp;on the switch in which I used for the Region column as data so simple in that one.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you Thank you Thank YOU!!!!&lt;/P&gt;&lt;P&gt;Holly&lt;/P&gt;</description>
      <pubDate>Tue, 03 Dec 2024 14:44:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-do-I-group-count-all-the-incident-tickets-with-a-multiple/m-p/4311808#M171236</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-12-03T14:44:39Z</dc:date>
    </item>
  </channel>
</rss>

