<?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: Value that occurs most often in a calculated column in another table in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Value-that-occurs-most-often-in-a-calculated-column-in-another/m-p/4740392#M181552</link>
    <description>&lt;P&gt;Unfortunately your code gives an #ERROR and I have trouble finding where it goes wrong. Thanks for helping tho! Really appreciated!&lt;/P&gt;</description>
    <pubDate>Mon, 23 Jun 2025 08:44:19 GMT</pubDate>
    <dc:creator>EricaK</dc:creator>
    <dc:date>2025-06-23T08:44:19Z</dc:date>
    <item>
      <title>Value that occurs most often in a calculated column in another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Value-that-occurs-most-often-in-a-calculated-column-in-another/m-p/4733451#M181314</link>
      <description>&lt;P&gt;Hi there all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Fairly new to DAX and i'm struggling right now to get a result in a calculated column.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What do I have:&lt;/P&gt;&lt;P&gt;Table Treatments&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;TreatmentID&lt;/TD&gt;&lt;TD&gt;Treated by Employee ID&lt;/TD&gt;&lt;TD&gt;EpisodeID&lt;/TD&gt;&lt;TD&gt;CombineEpisodeEmployee&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;uniquenumber&lt;/TD&gt;&lt;TD&gt;Number&lt;/TD&gt;&lt;TD&gt;Number&lt;/TD&gt;&lt;TD&gt;CalculatedColumn = helpcolumn&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;301&lt;/TD&gt;&lt;TD&gt;11&lt;/TD&gt;&lt;TD&gt;11-301&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;301&lt;/TD&gt;&lt;TD&gt;11&lt;/TD&gt;&lt;TD&gt;11-301&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;304&lt;/TD&gt;&lt;TD&gt;11&lt;/TD&gt;&lt;TD&gt;11-304&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;304&lt;/TD&gt;&lt;TD&gt;21&lt;/TD&gt;&lt;TD&gt;21-304&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;304&lt;/TD&gt;&lt;TD&gt;21&lt;/TD&gt;&lt;TD&gt;21-304&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Table episodes&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;EpisodeID&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;MostTreatedEmployeeID&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;UniqueNumber&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;CalculatedColumn&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;11&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;301&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;21&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;304&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How can i calculate the MostTreatedEmployeeID?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I had it working in a reagular measure with the following code:&lt;/P&gt;&lt;P&gt;MostTreatedEmployeeID =&lt;BR /&gt;right(MAXX(TOPN(1,GROUPBY('Treatments','Treatments'[CombineEpisodeEmployee],"Count",COUNTX(CURRENTGROUP(), 'Treatments'[CombineEpisodeEmployee])), [Count], DESC), 'Treatments'[CombineEpisodeEmployee]),3)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Tho, when it is a measure I cannot use it in a matrix in the collumns or rows, which I want to. Or, can I?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I know that i have to put in the EpisodeID in the search somewhere, but i'm lost in the way how to...&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Jun 2025 11:47:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Value-that-occurs-most-often-in-a-calculated-column-in-another/m-p/4733451#M181314</guid>
      <dc:creator>EricaK</dc:creator>
      <dc:date>2025-06-16T11:47:33Z</dc:date>
    </item>
    <item>
      <title>Re: Value that occurs most often in a calculated column in another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Value-that-occurs-most-often-in-a-calculated-column-in-another/m-p/4733998#M181337</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1243209" data-lia-user-login="EricaK" class="lia-mention lia-mention-user"&gt;EricaK&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;One way to get around this is to replicate your logic as a calculated column. Here is your measure converted to a calculated column:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;MostTreatedEmployeeID =
VAR CurrentEpisode = Episodes[EpisodeID]
VAR EpisodeTreatments =
    FILTER(
        Treatments,
        Treatments[EpisodeID] = CurrentEpisode
    )
VAR EmployeeFrequency =
    ADDCOLUMNS(
        SUMMARIZE(EpisodeTreatments, Treatments[Treated by Employee ID]),
        "Count", COUNTROWS(FILTER(EpisodeTreatments, Treatments[Treated by Employee ID] = EARLIER(Treatments[Treated by Employee ID])))
    )
VAR TopEmployee =
    TOPN(
        1,
        EmployeeFrequency,
        [Count], DESC,
        Treatments[Treated by Employee ID], ASC
    )
RETURN
    MAXX(TopEmployee, Treatments[Treated by Employee ID])&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Once created, you can add this calculated column as a row or column in your matrix.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If this helped, please mark it as the solution so others can benefit too. And if you found it useful, kudos are always appreciated.&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Samson&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Connect with me on &lt;/STRONG&gt;&lt;A href="https://www.linkedin.com/in/samson-truong/" target="_blank" rel="noopener"&gt;&lt;STRONG&gt;LinkedIn&lt;/STRONG&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Check out my &lt;/STRONG&gt;&lt;A href="https://discoveringallthingsanalytics.com/" target="_blank" rel="noopener"&gt;&lt;STRONG&gt;Blog&lt;/STRONG&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Going to the European Microsoft Fabric Community Conference? Check out my &lt;/STRONG&gt;&lt;A href="https://www.sharepointeurope.com/events/semantic-model-optimization-for-enterprise-ai-enablement/" target="_blank" rel="noopener"&gt;&lt;STRONG&gt;Session&lt;/STRONG&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Jun 2025 19:52:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Value-that-occurs-most-often-in-a-calculated-column-in-another/m-p/4733998#M181337</guid>
      <dc:creator>SamsonTruong</dc:creator>
      <dc:date>2025-06-16T19:52:57Z</dc:date>
    </item>
    <item>
      <title>Re: Value that occurs most often in a calculated column in another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Value-that-occurs-most-often-in-a-calculated-column-in-another/m-p/4734320#M181346</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;you cannot group a measure (put it in rows or columns in a mtarix) but you can group a column. So what you can do is group the EpisodeID from the Episode table and create a measure for the&amp;nbsp;&lt;STRONG&gt;MostTreatedEmployeeID &lt;/STRONG&gt;like follows:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Most Treated Employee ID =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;MaxNrTreatmentsByEmployee&lt;/SPAN&gt;&lt;SPAN&gt; =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;MAXX&lt;/SPAN&gt;&lt;SPAN&gt; ( &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;VALUES&lt;/SPAN&gt;&lt;SPAN&gt; ( &lt;/SPAN&gt;&lt;SPAN&gt;Treatments&lt;/SPAN&gt;&lt;SPAN&gt;[Treated by Employee ID]&lt;/SPAN&gt;&lt;SPAN&gt; ), &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;( &lt;/SPAN&gt;&lt;SPAN&gt;COUNTROWS&lt;/SPAN&gt;&lt;SPAN&gt;( &lt;/SPAN&gt;&lt;SPAN&gt;Treatments&lt;/SPAN&gt;&lt;SPAN&gt; ) )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;EployeeTreatments&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;ADDCOLUMNS&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;VALUES&lt;/SPAN&gt;&lt;SPAN&gt; ( &lt;/SPAN&gt;&lt;SPAN&gt;Treatments&lt;/SPAN&gt;&lt;SPAN&gt;[Treated by Employee ID]&lt;/SPAN&gt;&lt;SPAN&gt; ),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;"@NrTreats"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;( &lt;/SPAN&gt;&lt;SPAN&gt;COUNTROWS&lt;/SPAN&gt;&lt;SPAN&gt;( &lt;/SPAN&gt;&lt;SPAN&gt;Treatments&lt;/SPAN&gt;&lt;SPAN&gt; ) )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;EmployeesMaxTreats&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;FILTER&lt;/SPAN&gt;&lt;SPAN&gt; (&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;EployeeTreatments&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;[@NrTreats]&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;MaxNrTreatmentsByEmployee&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;RETURN&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;CONCATENATEX&lt;/SPAN&gt;&lt;SPAN&gt;( &lt;/SPAN&gt;&lt;SPAN&gt;EmployeesMaxTreats&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;[Treated by Employee ID]&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;" / "&lt;/SPAN&gt;&lt;SPAN&gt; )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Please note two things&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1 - you cannot assume that the Most Treated Employee is a single one, and I considered the possibiliy they are mutiple&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;2 - To Improve your model, I suggest to create a table Employee and if you want I can change the above code considering this change&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this solves, please mark this post as a solution&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jun 2025 06:39:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Value-that-occurs-most-often-in-a-calculated-column-in-another/m-p/4734320#M181346</guid>
      <dc:creator>FBergamaschi</dc:creator>
      <dc:date>2025-06-17T06:39:20Z</dc:date>
    </item>
    <item>
      <title>Re: Value that occurs most often in a calculated column in another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Value-that-occurs-most-often-in-a-calculated-column-in-another/m-p/4738438#M181490</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1243209" data-lia-user-login="EricaK" class="lia-mention lia-mention-user"&gt;EricaK&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;Thank you&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1287762" data-lia-user-login="FBergamaschi" class="lia-mention lia-mention-user"&gt;FBergamaschi&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="927426" data-lia-user-login="SamsonTruong" class="lia-mention lia-mention-user"&gt;SamsonTruong&lt;/a&gt;&amp;nbsp; for your inputs.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;We wanted to kindly follow up to check if the solution provided for the issue worked? or Let us know if you need any further assistance?&lt;BR /&gt;If our response addressed, please mark it as Accept as solution and click Yes if you found it helpful.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt;Chaithra.&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Jun 2025 08:33:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Value-that-occurs-most-often-in-a-calculated-column-in-another/m-p/4738438#M181490</guid>
      <dc:creator>v-echaithra</dc:creator>
      <dc:date>2025-06-20T08:33:15Z</dc:date>
    </item>
    <item>
      <title>Re: Value that occurs most often in a calculated column in another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Value-that-occurs-most-often-in-a-calculated-column-in-another/m-p/4740389#M181551</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Thank you so much! This is a real good help for me!&lt;/P&gt;&lt;P&gt;The measure that you made is to put as a calculated column, right? Well, it works there &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&amp;nbsp; It also works as a general measure, but I can't&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Your notes:&lt;/P&gt;&lt;P&gt;1 - Most treated is a single one: you are right! in 99% of the cases it is, and for the last percent I wanted to add (later) an extra part of the formula. If there are 2 (or more) then use another column -&amp;gt; MainContact.&amp;nbsp; I'm open for help in this part &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&amp;nbsp;&lt;BR /&gt;2 - I do have a table Employee, but I don't see how you would change the code above? Use names in stead of ID numbers? Yes, I was planning on doing that. Wanted to get ID's first and a lookup isn't that hard.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your response now gives all the ID's that have worked in this Episode. How can I get the one with the most treatments?&lt;BR /&gt;&lt;BR /&gt;thanks in advance!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Jun 2025 08:43:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Value-that-occurs-most-often-in-a-calculated-column-in-another/m-p/4740389#M181551</guid>
      <dc:creator>EricaK</dc:creator>
      <dc:date>2025-06-23T08:43:35Z</dc:date>
    </item>
    <item>
      <title>Re: Value that occurs most often in a calculated column in another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Value-that-occurs-most-often-in-a-calculated-column-in-another/m-p/4740392#M181552</link>
      <description>&lt;P&gt;Unfortunately your code gives an #ERROR and I have trouble finding where it goes wrong. Thanks for helping tho! Really appreciated!&lt;/P&gt;</description>
      <pubDate>Mon, 23 Jun 2025 08:44:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Value-that-occurs-most-often-in-a-calculated-column-in-another/m-p/4740392#M181552</guid>
      <dc:creator>EricaK</dc:creator>
      <dc:date>2025-06-23T08:44:19Z</dc:date>
    </item>
    <item>
      <title>Re: Value that occurs most often in a calculated column in another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Value-that-occurs-most-often-in-a-calculated-column-in-another/m-p/4740865#M181576</link>
      <description>&lt;P&gt;Hi Erika K&lt;/P&gt;&lt;P&gt;below my answers&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Hi,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Thank you so much! This is a real good help for me!&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;The measure that you made is to put as a calculated column, right?&amp;nbsp;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FB no, I am using a column you have already,&amp;nbsp;&lt;SPAN&gt;EpisodeID from the Episode table&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp; It also works as a general measure, but I can't&amp;nbsp;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FB what you can't is unclear to me&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;EM&gt;Your notes:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;1 - Most treated is a single one: you are right! in 99% of the cases it is, and for the last percent I wanted to add (later) an extra part of the formula. If there are 2 (or more) then use another column -&amp;gt; MainContact.&amp;nbsp; I'm open for help in this part&amp;nbsp;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FB my code already considers this possibility&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;BR /&gt;&lt;EM&gt;2 - I do have a table Employee, but I don't see how you would change the code above? Use names in stead of ID numbers? Yes, I was planning on doing that. Wanted to get ID's first and a lookup isn't that hard.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FB I meant connecting the Employee dimension table to the fact tables and subtitute in the DAX code the column&amp;nbsp;&lt;SPAN&gt;Treatments&lt;/SPAN&gt;&lt;SPAN&gt;[Treated by Employee ID] that comes from the fact table with the Employee ID from the Employee dimension table&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your response now gives all the ID's that have worked in this Episode. How can I get the one with the most treatments?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FB my code gives you already the ID of the employees with most treatments of that episode&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;thanks in advance!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FB you are welcome, if this is a solution please give kudos and mark as a solution, otherwise I am here at disposal&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Jun 2025 13:15:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Value-that-occurs-most-often-in-a-calculated-column-in-another/m-p/4740865#M181576</guid>
      <dc:creator>FBergamaschi</dc:creator>
      <dc:date>2025-06-23T13:15:20Z</dc:date>
    </item>
    <item>
      <title>Re: Value that occurs most often in a calculated column in another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Value-that-occurs-most-often-in-a-calculated-column-in-another/m-p/4742561#M181613</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1243209" data-lia-user-login="EricaK" class="lia-mention lia-mention-user"&gt;EricaK&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;We wanted to kindly follow up to check if the solution provided for the issue worked? or Let us know if you need any further assistance?&lt;BR /&gt;If our response addressed, please mark it as Accept as solution and click Yes if you found it helpful.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt;Chaithra.&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Jun 2025 06:17:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Value-that-occurs-most-often-in-a-calculated-column-in-another/m-p/4742561#M181613</guid>
      <dc:creator>v-echaithra</dc:creator>
      <dc:date>2025-06-25T06:17:03Z</dc:date>
    </item>
    <item>
      <title>Re: Value that occurs most often in a calculated column in another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Value-that-occurs-most-often-in-a-calculated-column-in-another/m-p/4746035#M181743</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1243209" data-lia-user-login="EricaK" class="lia-mention lia-mention-user"&gt;EricaK&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;As we haven’t heard back from you, so just following up to our previous message. I'd like to confirm if you've successfully resolved this issue or if you need further help.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If yes, you are welcome to share your workaround and mark it as a solution so that other users can benefit as well. If you find a reply particularly helpful to you, you can also mark it as a solution.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If you still have any questions or need more support, please feel free to let us know. We are more than happy to continue to help you.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you for your patience and look forward to hearing from you.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Best Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chaithra E.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Jun 2025 06:01:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Value-that-occurs-most-often-in-a-calculated-column-in-another/m-p/4746035#M181743</guid>
      <dc:creator>v-echaithra</dc:creator>
      <dc:date>2025-06-27T06:01:57Z</dc:date>
    </item>
    <item>
      <title>Re: Value that occurs most often in a calculated column in another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Value-that-occurs-most-often-in-a-calculated-column-in-another/m-p/4747979#M181819</link>
      <description>&lt;P&gt;Thanks! I don't know if this is an automated message? But I only have the opportunity to work on this on Mondays &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt; I will accept as solution when it's done &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Jun 2025 07:52:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Value-that-occurs-most-often-in-a-calculated-column-in-another/m-p/4747979#M181819</guid>
      <dc:creator>EricaK</dc:creator>
      <dc:date>2025-06-30T07:52:19Z</dc:date>
    </item>
    <item>
      <title>Re: Value that occurs most often in a calculated column in another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Value-that-occurs-most-often-in-a-calculated-column-in-another/m-p/4748000#M181821</link>
      <description>&lt;P&gt;Thank you so much!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2 Things that are still open for me now:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;The DAX code you made for me, do I have to use that as a calculated column? Yes, right?&lt;/LI&gt;&lt;LI&gt;If I use it this way, it will give as response all the ID's that have worked on that episode - I think it is because of the &lt;SPAN&gt;CONCATENATEX&lt;/SPAN&gt;&lt;SPAN&gt;( ), but I have no idea where to replace it with.&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&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;&lt;EM&gt;&amp;nbsp; It also works as a general measure, but I can't&amp;nbsp;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FB what you can't is unclear to me&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Haha, I wasn't done typing there. Excuse me. &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;I can't use a general measure in&amp;nbsp;a matrix in the collumns or rows, which I want to. Therefor I think it should be in a calculated column.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Most treated if there are 2 (or more) is solved&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In regards to the Employee in fact table - it is part of the export that has the Employee included. I think this is good right now.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Jun 2025 08:04:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Value-that-occurs-most-often-in-a-calculated-column-in-another/m-p/4748000#M181821</guid>
      <dc:creator>EricaK</dc:creator>
      <dc:date>2025-06-30T08:04:47Z</dc:date>
    </item>
    <item>
      <title>Re: Value that occurs most often in a calculated column in another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Value-that-occurs-most-often-in-a-calculated-column-in-another/m-p/4750477#M181899</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1243209" data-lia-user-login="EricaK" class="lia-mention lia-mention-user"&gt;EricaK&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;Try again with this DAX as a calculated column.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;MostTreatedEmployeeID__12 =&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;BR /&gt;
&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;CurrentEpisode&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;'Table'&lt;/SPAN&gt;&lt;SPAN&gt;[EpisodeID]&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;EmployeeCounts&lt;/SPAN&gt;&lt;SPAN&gt; =&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;ADDCOLUMNS&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;SUMMARIZE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;FILTER&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Table'&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;'Table'&lt;/SPAN&gt;&lt;SPAN&gt;[EpisodeID]&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;CurrentEpisode&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;'Table'&lt;/SPAN&gt;&lt;SPAN&gt;[Treated by Employee ID]&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ),&lt;/SPAN&gt;&lt;SPAN&gt;"TreatCount"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;COUNTROWS&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Table'&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;FILTER&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;'Table'&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;'Table'&lt;/SPAN&gt;&lt;SPAN&gt;[EpisodeID]&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;CurrentEpisode&lt;/SPAN&gt;&lt;SPAN&gt; &amp;amp;&amp;amp;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;'Table'&lt;/SPAN&gt;&lt;SPAN&gt;[Treated by Employee ID]&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;EARLIER&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Table'&lt;/SPAN&gt;&lt;SPAN&gt;[Treated by Employee ID]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; )&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;TopEmployee&lt;/SPAN&gt;&lt;SPAN&gt; =&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;TOPN&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;1&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;EmployeeCounts&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;[TreatCount]&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;DESC&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;'Table'&lt;/SPAN&gt;&lt;SPAN&gt;[Treated by Employee ID]&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;ASC&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; )&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;RETURN&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;MAXX&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;TopEmployee&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;'Table'&lt;/SPAN&gt;&lt;SPAN&gt;[Treated by Employee ID]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;BR /&gt;&lt;BR /&gt;Please refer to the pbix file attatched.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Thu, 03 Jul 2025 09:07:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Value-that-occurs-most-often-in-a-calculated-column-in-another/m-p/4750477#M181899</guid>
      <dc:creator>v-echaithra</dc:creator>
      <dc:date>2025-07-03T09:07:01Z</dc:date>
    </item>
    <item>
      <title>Re: Value that occurs most often in a calculated column in another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Value-that-occurs-most-often-in-a-calculated-column-in-another/m-p/4756052#M182108</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1243209" data-lia-user-login="EricaK" class="lia-mention lia-mention-user"&gt;EricaK&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;We would&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;like to confirm if you've successfully resolved this issue or if you need further help.&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;If you still have any questions or need more support, please feel free to let us know. We are more than happy to continue to help you.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you for your patience and look forward to hearing from you.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Best Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Chaithra E.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jul 2025 06:51:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Value-that-occurs-most-often-in-a-calculated-column-in-another/m-p/4756052#M182108</guid>
      <dc:creator>v-echaithra</dc:creator>
      <dc:date>2025-07-08T06:51:43Z</dc:date>
    </item>
    <item>
      <title>Re: Value that occurs most often in a calculated column in another table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Value-that-occurs-most-often-in-a-calculated-column-in-another/m-p/4756147#M182109</link>
      <description>&lt;P&gt;Yes, this works! Thank you so much &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jul 2025 07:46:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Value-that-occurs-most-often-in-a-calculated-column-in-another/m-p/4756147#M182109</guid>
      <dc:creator>EricaK</dc:creator>
      <dc:date>2025-07-08T07:46:41Z</dc:date>
    </item>
  </channel>
</rss>

