<?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: undefined📢 Problème avec une facturation trimestrielle en DAX : filtres essentiels sautent in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/undefined-Probl%C3%A8me-avec-une-facturation-trimestrielle-en-DAX/m-p/4591256#M175837</link>
    <description>&lt;P&gt;link asks for access, Please check.&lt;/P&gt;</description>
    <pubDate>Sat, 01 Mar 2025 13:51:53 GMT</pubDate>
    <dc:creator>lbendlin</dc:creator>
    <dc:date>2025-03-01T13:51:53Z</dc:date>
    <item>
      <title>undefined📢 Problème avec une facturation trimestrielle en DAX : filtres essentiels sautent</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/undefined-Probl%C3%A8me-avec-une-facturation-trimestrielle-en-DAX/m-p/4590796#M175824</link>
      <description>&lt;P&gt;Bonjour à tous,&lt;/P&gt;&lt;P&gt;J’ai un problème avec une mesure DAX que j’essaie de créer dans Power Pivot pour calculer une facturation trimestrielle à partir d’une table F_Tableau_Mandat.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":direct_hit:"&gt;🎯&lt;/span&gt; Objectif : Je veux calculer la somme des 3 mois d’un trimestre et l’afficher dans mon Tableau Croisé Dynamique (TCD).&lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":pushpin:"&gt;📌&lt;/span&gt; Exemple attendu :&lt;/P&gt;&lt;P&gt;Si je sélectionne Février, il doit afficher la somme d'une mesure précédemment définie appliquée à Janvier + Février + Mars. Si je sélectionne Mai, il doit afficher Avril + Mai + Juin. Etc. &lt;span class="lia-unicode-emoji" title=":pushpin:"&gt;📌&lt;/span&gt; Contrainte :&lt;/P&gt;&lt;P&gt;Mon modèle doit conserver les autres filtres actifs, notamment sur les colonnes # Compte, Participation, et Statut.&lt;/P&gt;&lt;P&gt;Mon problème actuel est que le filtre sur # Compte saute et affiche une somme globale. &lt;span class="lia-unicode-emoji" title=":pushpin:"&gt;📌&lt;/span&gt; Données Ma table F_Tableau_Mandat contient :&lt;/P&gt;&lt;P&gt;Mois # Compte Participation Statut Mand_Débit_Suivi_HT 2024-01-01 706000 PartA Actif 1000 2024-02-01 706000 PartA Actif 1200 2024-03-01 706000 PartA Actif 1100 2024-04-01 706000 PartB Actif 1300 2024-05-01 706000 PartB Actif 1400&lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":pushpin:"&gt;📌&lt;/span&gt; Ce que je veux obtenir dans mon TCD : Si je sélectionne Février, la mesure doit retourner 1000 + 1200 + 1100 = 3300. Si je sélectionne Mai, elle doit retourner 1300 + 1400 + Juin.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":magnifying_glass_tilted_left:"&gt;🔍&lt;/span&gt; Mon code DAX actuel DAX Copier Modifier Mand_Facturation_Trimestrielle = VAR CurrentMonth = MONTH( MAX(F_Tableau_Mandat[Mois]) ) VAR CurrentYear = YEAR( MAX(F_Tableau_Mandat[Mois]) )&lt;/P&gt;&lt;P&gt;VAR DebutTrimestre = SWITCH( TRUE(); CurrentMonth = 2 ; DATE(CurrentYear; 1; 1); CurrentMonth = 5 ; DATE(CurrentYear; 4; 1); CurrentMonth = 8 ; DATE(CurrentYear; 7; 1); CurrentMonth = 11 ; DATE(CurrentYear; 10; 1); BLANK() )&lt;/P&gt;&lt;P&gt;VAR FinTrimestre = EOMONTH(DebutTrimestre; 2) -- Fin du trimestre&lt;/P&gt;&lt;P&gt;RETURN CALCULATE( SUMX( FILTER( ALL(F_Tableau_Mandat[Mois]); -- Supprime uniquement le filtre sur Mois F_Tableau_Mandat[Mois] &amp;gt;= DebutTrimestre &amp;amp;&amp;amp; F_Tableau_Mandat[Mois] &amp;lt;= FinTrimestre ); [Mand_Débit_Suivi_HT] ); ALLEXCEPT(F_Tableau_Mandat, F_Tableau_Mandat[# Compte], F_Tableau_Mandat[Participation], F_Tableau_Mandat[Statut]) -- Garder les filtres ) &lt;span class="lia-unicode-emoji" title=":police_car_light:"&gt;🚨&lt;/span&gt; Problème rencontré : &lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt; Le calcul de la somme trimestrielle fonctionne (J’obtiens bien la somme des 3 mois). &lt;span class="lia-unicode-emoji" title=":cross_mark:"&gt;❌&lt;/span&gt; Mais le filtre sur # Compte saute dans mon tableau croisé dynamique (TCD). &lt;span class="lia-unicode-emoji" title=":cross_mark:"&gt;❌&lt;/span&gt; J’obtiens une somme globale au lieu d’une somme par compte comptable.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":hammer_and_wrench:"&gt;🛠&lt;/span&gt;️ Ce que j’ai essayé : J’ai utilisé ALL(F_Tableau_Mandat[Mois]) pour supprimer uniquement le filtre sur Mois, mais le filtre # Compte saute. J’ai testé ALLEXCEPT(F_Tableau_Mandat, F_Tableau_Mandat[# Compte], F_Tableau_Mandat[Participation], F_Tableau_Mandat[Statut]), mais le problème persiste. J’ai aussi essayé une approche avec DATESBETWEEN(), mais le comportement reste erroné.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":loudspeaker:"&gt;📢&lt;/span&gt; Ma question : &lt;span class="lia-unicode-emoji" title=":hammer_and_wrench:"&gt;🛠&lt;/span&gt; Comment puis-je modifier ma mesure DAX pour additionner correctement les 3 mois du trimestre, tout en conservant les filtres # Compte, Participation, et Statut actifs ?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":pushpin:"&gt;📌&lt;/span&gt; Merci d’avance pour votre aide ! &lt;span class="lia-unicode-emoji" title=":folded_hands:"&gt;🙏&lt;/span&gt; Toute suggestion ou correction est la bienvenue ! &lt;span class="lia-unicode-emoji" title=":rocket:"&gt;🚀&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Feb 2025 21:00:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/undefined-Probl%C3%A8me-avec-une-facturation-trimestrielle-en-DAX/m-p/4590796#M175824</guid>
      <dc:creator>Chrystelle</dc:creator>
      <dc:date>2025-02-28T21:00:37Z</dc:date>
    </item>
    <item>
      <title>Re: undefined📢 Problème avec une facturation trimestrielle en DAX : filtres essentiels sautent</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/undefined-Probl%C3%A8me-avec-une-facturation-trimestrielle-en-DAX/m-p/4590948#M175827</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;Do not include sensitive information. Do not include anything that is unrelated to the issue or question. &lt;BR /&gt;Please show the expected outcome based on the sample data you provided. &lt;BR /&gt;&lt;BR /&gt;Need help uploading data? &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;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, 01 Mar 2025 00:42:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/undefined-Probl%C3%A8me-avec-une-facturation-trimestrielle-en-DAX/m-p/4590948#M175827</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2025-03-01T00:42:59Z</dc:date>
    </item>
    <item>
      <title>Re: undefined📢 Problème avec une facturation trimestrielle en DAX : filtres essentiels sautent</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/undefined-Probl%C3%A8me-avec-une-facturation-trimestrielle-en-DAX/m-p/4591044#M175832</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for helping !&lt;/P&gt;&lt;P&gt;It's the first time I post a question, sorry if my question wasn't understandable.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I load an anonymised file to explain the issue&amp;nbsp;here :&amp;nbsp;&lt;A href="https://docs.google.com/spreadsheets/d/1Lgz3YJeZ3ARvo4BWt6sK9KZI94OYWk3C/edit?usp=drive_link&amp;amp;ouid=103155892145216586771&amp;amp;rtpof=true&amp;amp;sd=true" target="_blank"&gt;https://docs.google.com/spreadsheets/d/1Lgz3YJeZ3ARvo4BWt6sK9KZI94OYWk3C/edit?usp=drive_link&amp;amp;ouid=103155892145216586771&amp;amp;rtpof=true&amp;amp;sd=true&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 01 Mar 2025 05:15:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/undefined-Probl%C3%A8me-avec-une-facturation-trimestrielle-en-DAX/m-p/4591044#M175832</guid>
      <dc:creator>Chrystelle</dc:creator>
      <dc:date>2025-03-01T05:15:25Z</dc:date>
    </item>
    <item>
      <title>Re: undefined📢 Problème avec une facturation trimestrielle en DAX : filtres essentiels sautent</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/undefined-Probl%C3%A8me-avec-une-facturation-trimestrielle-en-DAX/m-p/4591256#M175837</link>
      <description>&lt;P&gt;link asks for access, Please check.&lt;/P&gt;</description>
      <pubDate>Sat, 01 Mar 2025 13:51:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/undefined-Probl%C3%A8me-avec-une-facturation-trimestrielle-en-DAX/m-p/4591256#M175837</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2025-03-01T13:51:53Z</dc:date>
    </item>
    <item>
      <title>Re: undefined📢 Problème avec une facturation trimestrielle en DAX : filtres essentiels sautent</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/undefined-Probl%C3%A8me-avec-une-facturation-trimestrielle-en-DAX/m-p/4666663#M178746</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1230331" data-lia-user-login="Chrystelle" class="lia-mention lia-mention-user"&gt;Chrystelle&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for reaching out to Microsoft Fabric Community.&lt;/P&gt;
&lt;P data-pm-slice="1 1 []"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-pm-slice="1 1 []"&gt;I am unable to access the link you shared for the sample data. Could you please provide the sample data in a file format that we can access?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you!!&lt;/P&gt;</description>
      <pubDate>Thu, 24 Apr 2025 12:04:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/undefined-Probl%C3%A8me-avec-une-facturation-trimestrielle-en-DAX/m-p/4666663#M178746</guid>
      <dc:creator>v-sathmakuri</dc:creator>
      <dc:date>2025-04-24T12:04:35Z</dc:date>
    </item>
    <item>
      <title>Re: undefined📢 Problème avec une facturation trimestrielle en DAX : filtres essentiels sautent</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/undefined-Probl%C3%A8me-avec-une-facturation-trimestrielle-en-DAX/m-p/4671644#M178942</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1230331" data-lia-user-login="Chrystelle" class="lia-mention lia-mention-user"&gt;Chrystelle&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;May I ask if you have resolved this issue? If so, please mark the helpful reply and accept it as the solution. This will be helpful for other community members who have similar problems to solve it faster.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If your issue is not resolved, please share the sample data for better resolution.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you!!&lt;/P&gt;</description>
      <pubDate>Mon, 28 Apr 2025 17:25:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/undefined-Probl%C3%A8me-avec-une-facturation-trimestrielle-en-DAX/m-p/4671644#M178942</guid>
      <dc:creator>v-sathmakuri</dc:creator>
      <dc:date>2025-04-28T17:25:47Z</dc:date>
    </item>
    <item>
      <title>Re: undefined📢 Problème avec une facturation trimestrielle en DAX : filtres essentiels sautent</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/undefined-Probl%C3%A8me-avec-une-facturation-trimestrielle-en-DAX/m-p/4677258#M179132</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1230331" data-lia-user-login="Chrystelle" class="lia-mention lia-mention-user"&gt;Chrystelle&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;May I ask if you have resolved this issue? If so, please mark the helpful reply and accept it as the solution. This will be helpful for other community members who have similar problems to solve it faster.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If your issue is not resolved, please share the sample data for better resolution.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you!!&lt;/P&gt;</description>
      <pubDate>Fri, 02 May 2025 09:48:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/undefined-Probl%C3%A8me-avec-une-facturation-trimestrielle-en-DAX/m-p/4677258#M179132</guid>
      <dc:creator>v-sathmakuri</dc:creator>
      <dc:date>2025-05-02T09:48:43Z</dc:date>
    </item>
  </channel>
</rss>

