<?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: Medida DAX con doble condición anidada in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Medida-DAX-con-doble-condici%C3%B3n-anidada/m-p/3706870#M144199</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="170293" data-lia-user-login="jacob2102" class="lia-mention lia-mention-user"&gt;jacob2102&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;Based on the information you provided, I created some sample data to solve this problem for you. You can follow the steps below:&lt;BR /&gt;1. Add a measure.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Total = 
CALCULATE (
    SUM ( 'Table'[segs] ),
    FILTER (
        ALL ( 'Table' ),
        'Table'[ID] = SELECTEDVALUE ( 'Table'[ID] )
            &amp;amp;&amp;amp; 'Table'[area] = 3
            &amp;amp;&amp;amp; 'Table'[environment] = 1
            &amp;amp;&amp;amp; 'Table'[time 1] = "S"
            &amp;amp;&amp;amp; 'Table'[time 2] = "S"
            &amp;amp;&amp;amp; 'Table'[time 3] = "S"
    )
)
&lt;/LI-CODE&gt;
&lt;P&gt;Final output:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.fabric.microsoft.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490" target="_blank"&gt;How to Get Your Question Answered Quickly - Microsoft Fabric Community&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;If it does not help, please provide more details with your desired out put and pbix file without privacy information.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Ada Wang&lt;/P&gt;
&lt;P&gt;If this post&amp;nbsp;&lt;EM&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;&lt;/EM&gt;, then please consider&lt;EM&gt;&lt;STRONG&gt;&amp;nbsp;Accept it as the solution&amp;nbsp;&lt;/STRONG&gt;&lt;/EM&gt;to help the other members find it more quickly.&lt;/P&gt;</description>
    <pubDate>Mon, 19 Feb 2024 05:45:44 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2024-02-19T05:45:44Z</dc:date>
    <item>
      <title>Medida DAX con doble condición anidada</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Medida-DAX-con-doble-condici%C3%B3n-anidada/m-p/3704145#M144082</link>
      <description>&lt;P&gt;&lt;FONT&gt;Buenos días&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;Estoy tratando de crear una medida DAX con varias condiciones anidadas, que hacen referencia al mismo id pero no la condición no se da en la misma fila de datos.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;Tengo una tabla con datos históricos de tarjetas, donde cada línea me muestra los diferentes estados por los que ha ido pasando. Una de las líneas me identifica si la tarjeta está cerrada, a través de su codificación como "1". Para esto creo una medida básica con CALCULATE que me cuenta las tarjetas distintas que cumplen la condición "cerrada = 1". Tabla de ejemplo:&lt;/FONT&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;&lt;FONT&gt;Por otro lado, quiero obtener el total de la variable "segs" cuando la línea cumpla la siguiente: "area = 3" &amp;amp; "entorno = 1" &amp;amp; "tiempo 1 = S" &amp;amp; "tiempo 2 = S" &amp;amp; "tiempo 3 =S".&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;El resultado que quiero obtener es: Sumar toda la variable "segs" si cumple la condición "area = 3" &amp;amp; "entorno = 1" &amp;amp; "tiempo 1 = S" &amp;amp; "tiempo 2 = S" &amp;amp; "tiempo 3 = S" , sólo para los "id" que estén cerrados.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;Intentó varias opciones de medidas DAX, pero no obtengo el valor correcto:&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;Opción 1: CALCULAR(Suma de tiempo, FILTRO(tabla, Cerradas)). El resultado es "EN BLANCO" ya que no detecta una fila que cumpla ambas condiciones, así que no suma ningún valor.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;Opción 2: medida DAX con variables. VAR 1 Tarjetas cerradas, VAR 2 Total Segs, RETORNO CALCULAR(Total Segs, FILTRO(tabla, Tarjetas Cerradas)). En este caso el resultado me incluye también los "Segs" del "id = 100999". Suma todos los tiempos que cumplen la condición "area = 3" &amp;amp; "entorno = 1" &amp;amp; "tiempo 1 = S" &amp;amp; "tiempo 2 = S" &amp;amp; "tiempo 3 = S".&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;¿Cómo puedo crear una medida en DAX que anide ambas condiciones? Mi objetivo es sumar la variable "segs" sólo si el "id" cumple la condición de que esté cerrado.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;gracias&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;jacob&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Feb 2024 13:50:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Medida-DAX-con-doble-condici%C3%B3n-anidada/m-p/3704145#M144082</guid>
      <dc:creator>jacob2102</dc:creator>
      <dc:date>2024-02-16T13:50:15Z</dc:date>
    </item>
    <item>
      <title>Re: Medida DAX con doble condición anidada</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Medida-DAX-con-doble-condici%C3%B3n-anidada/m-p/3705500#M144147</link>
      <description>&lt;P&gt;Please provide sample data that covers your issue or question &lt;STRONG&gt;completely&lt;/STRONG&gt;, in a &lt;STRONG&gt;usable&lt;/STRONG&gt; format (not as a screenshot).&lt;BR /&gt;&lt;BR /&gt;Do not include sensitive information or anything not related to the issue or question. &lt;BR /&gt;&lt;BR /&gt;If you are unsure how to upload data please refer to &lt;A href="https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-p/963216" target="_blank"&gt;https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-p/963216&lt;/A&gt; &lt;BR /&gt;&lt;BR /&gt;Please show the expected outcome based on the sample data you provided. &lt;BR /&gt;&lt;BR /&gt;Want faster answers? &lt;A href="https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523" target="_blank"&gt;https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 17 Feb 2024 21:52:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Medida-DAX-con-doble-condici%C3%B3n-anidada/m-p/3705500#M144147</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2024-02-17T21:52:22Z</dc:date>
    </item>
    <item>
      <title>Re: Medida DAX con doble condición anidada</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Medida-DAX-con-doble-condici%C3%B3n-anidada/m-p/3706870#M144199</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="170293" data-lia-user-login="jacob2102" class="lia-mention lia-mention-user"&gt;jacob2102&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;Based on the information you provided, I created some sample data to solve this problem for you. You can follow the steps below:&lt;BR /&gt;1. Add a measure.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Total = 
CALCULATE (
    SUM ( 'Table'[segs] ),
    FILTER (
        ALL ( 'Table' ),
        'Table'[ID] = SELECTEDVALUE ( 'Table'[ID] )
            &amp;amp;&amp;amp; 'Table'[area] = 3
            &amp;amp;&amp;amp; 'Table'[environment] = 1
            &amp;amp;&amp;amp; 'Table'[time 1] = "S"
            &amp;amp;&amp;amp; 'Table'[time 2] = "S"
            &amp;amp;&amp;amp; 'Table'[time 3] = "S"
    )
)
&lt;/LI-CODE&gt;
&lt;P&gt;Final output:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.fabric.microsoft.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490" target="_blank"&gt;How to Get Your Question Answered Quickly - Microsoft Fabric Community&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;If it does not help, please provide more details with your desired out put and pbix file without privacy information.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Ada Wang&lt;/P&gt;
&lt;P&gt;If this post&amp;nbsp;&lt;EM&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;&lt;/EM&gt;, then please consider&lt;EM&gt;&lt;STRONG&gt;&amp;nbsp;Accept it as the solution&amp;nbsp;&lt;/STRONG&gt;&lt;/EM&gt;to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Feb 2024 05:45:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Medida-DAX-con-doble-condici%C3%B3n-anidada/m-p/3706870#M144199</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-02-19T05:45:44Z</dc:date>
    </item>
    <item>
      <title>Re: Medida DAX con doble condición anidada</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Medida-DAX-con-doble-condici%C3%B3n-anidada/m-p/3707494#M144219</link>
      <description>&lt;P&gt;Buenos días,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Adjunto envío un archivo con datos de ejemplo, para poder obtener los resultados esperados.&lt;/P&gt;&lt;P&gt;&lt;A title="DAX doble condicion" href="https://drive.google.com/file/d/1FRwVAmdqD-DJf6-Rg6FulAx8VyhfUTc8/view?usp=sharing" target="_self"&gt;DAX doble condicion&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;En este caso, a parte del total de tarjetas, tarjetas cerradas y tiempo "Segs" que cumple la condición&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;"area = 3" &amp;amp; "entorno = 1" &amp;amp; "tiempo 1 = S" &amp;amp; "tiempo 2 = S" &amp;amp; "tiempo 3 = S", necesito conocer el la suma de "Segs" sólo para las tarjetas que estén clasificadas como cerradas y que además cumplan esta condición.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;En resumen, necesito obtener una medida DAX que me devuelva el resultado de la tabla con fondo verde. En este caso sólo se suman los "Segs" de las tarjetas que son cerradas y que cumplen la condición&amp;nbsp;area = 3" &amp;amp; "entorno = 1" &amp;amp; "tiempo 1 = S" &amp;amp; "tiempo 2 = S" &amp;amp; "tiempo 3 = S".&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;¿Es posible crearlo como una medida directa en vez de tener que crearlo en una tabla o cambiar el modelo?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Gracias. Un saludo,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Jacob&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Feb 2024 09:28:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Medida-DAX-con-doble-condici%C3%B3n-anidada/m-p/3707494#M144219</guid>
      <dc:creator>jacob2102</dc:creator>
      <dc:date>2024-02-19T09:28:42Z</dc:date>
    </item>
    <item>
      <title>Re: Medida DAX con doble condición anidada</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Medida-DAX-con-doble-condici%C3%B3n-anidada/m-p/3708510#M144271</link>
      <description>&lt;P&gt;Buenas tardes,&lt;/P&gt;&lt;P&gt;Gracias por la respuesta, pero no es lo que necesito.&lt;BR /&gt;He incluido un archivo con datos de ejemplo, para así poder entender mejor la situación.&lt;/P&gt;&lt;P&gt;&lt;A title="DAX doble condición" href="https://drive.google.com/file/d/1FRwVAmdqD-DJf6-Rg6FulAx8VyhfUTc8/view?usp=sharing" target="_self"&gt;DAX doble condición&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Necesito crear una medida en DAX, que recoja los datos sólo de las etiquetas que sean cerradas, pero que sólo sume las líneas que cumplan las condiciones&amp;nbsp;&lt;SPAN&gt;"area = 3" &amp;amp; "entorno = 1" &amp;amp; "tiempo 1 = S" &amp;amp; "tiempo 2 = S" &amp;amp; "tiempo 3 = S".&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Gracias. Un saludo,&lt;BR /&gt;Jacob&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Feb 2024 15:52:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Medida-DAX-con-doble-condici%C3%B3n-anidada/m-p/3708510#M144271</guid>
      <dc:creator>jacob2102</dc:creator>
      <dc:date>2024-02-19T15:52:51Z</dc:date>
    </item>
    <item>
      <title>Re: Medida DAX con doble condición anidada</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Medida-DAX-con-doble-condici%C3%B3n-anidada/m-p/3708761#M144295</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Feb 2024 17:48:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Medida-DAX-con-doble-condici%C3%B3n-anidada/m-p/3708761#M144295</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2024-02-19T17:48:17Z</dc:date>
    </item>
    <item>
      <title>Re: Medida DAX con doble condición anidada</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Medida-DAX-con-doble-condici%C3%B3n-anidada/m-p/3708795#M144299</link>
      <description>&lt;P&gt;&lt;FONT&gt;Hola,&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;Gracias por la respuesta, pero el resultado obtenido no es la solución correcta, ya que se incluyen datos de tarjetas que no cumplen con la condición de estar cerradas.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;El dato que busco es el que se refleja en la tabla "Segs sólo cerradas" en color verde, por valor de 10.367.057. Necesito crear una medida que devuelva la suma de tiempo que cumpla la condición deseada, pero sólo para los ID que han sido cerrados.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;Gracias. Un saludo,&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;jacob&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Feb 2024 18:03:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Medida-DAX-con-doble-condici%C3%B3n-anidada/m-p/3708795#M144299</guid>
      <dc:creator>jacob2102</dc:creator>
      <dc:date>2024-02-19T18:03:21Z</dc:date>
    </item>
    <item>
      <title>Re: Medida DAX con doble condición anidada</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Medida-DAX-con-doble-condici%C3%B3n-anidada/m-p/3708797#M144300</link>
      <description>&lt;P&gt;You can add that filter as needed.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Feb 2024 18:04:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Medida-DAX-con-doble-condici%C3%B3n-anidada/m-p/3708797#M144300</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2024-02-19T18:04:55Z</dc:date>
    </item>
    <item>
      <title>Re: Medida DAX con doble condición anidada</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Medida-DAX-con-doble-condici%C3%B3n-anidada/m-p/3708807#M144301</link>
      <description>&lt;P&gt;¿Cómo puedo agregar el filtro dentro de la medida DAX?&lt;BR /&gt;Necesito crear un indicador de tipo tarjeta, a través de la medida, que me devuelva el resultado directamente, sin crear una tabla para poder incluir el filtro.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Gracias. Un saludo,&lt;/P&gt;&lt;P&gt;Jacob&lt;/P&gt;</description>
      <pubDate>Mon, 19 Feb 2024 18:10:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Medida-DAX-con-doble-condici%C3%B3n-anidada/m-p/3708807#M144301</guid>
      <dc:creator>jacob2102</dc:creator>
      <dc:date>2024-02-19T18:10:44Z</dc:date>
    </item>
    <item>
      <title>Re: Medida DAX con doble condición anidada</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Medida-DAX-con-doble-condici%C3%B3n-anidada/m-p/3710860#M144376</link>
      <description>&lt;P&gt;Buenos días,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ya tengo la solución, para poder crear la medida DAX con el valor correcto.&lt;/P&gt;&lt;P&gt;Por un lado creo la medida "Total Segs = CALCULATE(SUM(Tabla[Segs]),Tabla[&lt;SPAN&gt;area]=3,Tabla[entorno]=1,Tabla[tiempo 1]="S",Tabla[tiempo 2]="S",Tabla[tiempo 3]="S".&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Por otra parte creo una medida DAX que me devuelva una tabla con sólo las tarjetas cerradas, y posteriormente hago la suma sobre estos valores:&lt;BR /&gt;Total Segs Cerradas =&amp;nbsp;&lt;BR /&gt;VAR TablaCerradas = CALCULATETABLE(DISTINCT(Tabla[id]),Tabla[cerrada]=1)&lt;BR /&gt;RETURN SUMX(TablaCerradas, [Total Segs]).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Con esta solución consigo obtener el tiempo sólo para las tarjetas que cumplen la condición de estar cerradas, sumando las líneas que por otro lado cumplen la condición indicada.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Gracias. Un saludo,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Jacob&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Feb 2024 13:39:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Medida-DAX-con-doble-condici%C3%B3n-anidada/m-p/3710860#M144376</guid>
      <dc:creator>jacob2102</dc:creator>
      <dc:date>2024-02-20T13:39:43Z</dc:date>
    </item>
  </channel>
</rss>

