<?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 to fix my DAX measures for distinct users but still be able to filter the date in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-fix-my-DAX-measures-for-distinct-users-but-still-be-able/m-p/4873995#M185784</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="625922" data-lia-user-login="bhanu_gautam" class="lia-mention lia-mention-user"&gt;bhanu_gautam&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Thank you for your response it worked but different to what I am aiming for in the visual. How can I make it so that the visual show the total of users per date?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;for example for Nov 2025 it shows 6 distinct users were added but it also shows the total number of distinct users for this said month&lt;BR /&gt;&lt;BR /&gt;EDIT: also apologies for this newbie questions, but the visual kinda zooms out quite far a bit is there anything I can do to not show dates that doesnt have data so that it can only show the relevant dates which has users and entries?&lt;/P&gt;</description>
    <pubDate>Thu, 13 Nov 2025 07:30:24 GMT</pubDate>
    <dc:creator>KejGdr</dc:creator>
    <dc:date>2025-11-13T07:30:24Z</dc:date>
    <item>
      <title>How to fix my DAX measures for distinct users but still be able to filter the date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-fix-my-DAX-measures-for-distinct-users-but-still-be-able/m-p/4873923#M185780</link>
      <description>&lt;P&gt;Hi Community,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I was informed that these are DAX measures.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I have created a table with these, btw all are sources from a sharepoint online list&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;NGUsersItems = UNION(
    SELECTCOLUMNS('NG - Create Request List', "Name", 'NG - Create Request List'[Created By.title]), 
    SELECTCOLUMNS('NG - Get Templates Request List', "Name", 'NG - Get Templates Request List'[Created By.title] ),
    SELECTCOLUMNS('NG - Self Check Request List', "Name", 'NG - Self Check Request List'[Created By.title])
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and I added a measure&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;TotalNGUsers = DISTINCTCOUNT(NGUsersItems[Name])&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;my problem with these are whenever I add a line chart, I cannot filter it by the date table[date]. I am fairly new to power bi and I do not understand why because there is a [Created] column in this data. Any form of help or insights how I can fix this will highly be appreciated with a like and be marked as solution if it solves my problem. Thank you!&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;This is how it looks currently. What I want it to look like is show the number of total users per year.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;BR /&gt;&lt;BR /&gt;kind of like this (this is a different measure which does not tackle the number of users but the entries)&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Nov 2025 06:36:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-fix-my-DAX-measures-for-distinct-users-but-still-be-able/m-p/4873923#M185780</guid>
      <dc:creator>KejGdr</dc:creator>
      <dc:date>2025-11-13T06:36:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to fix my DAX measures for distinct users but still be able to filter the date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-fix-my-DAX-measures-for-distinct-users-but-still-be-able/m-p/4873940#M185783</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1400620" data-lia-user-login="KejGdr" class="lia-mention lia-mention-user"&gt;KejGdr&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Modify your DAX to include the [Created] column:&lt;/P&gt;
&lt;P&gt;DAX&lt;BR /&gt;NGUsersItems = &lt;BR /&gt;UNION(&lt;BR /&gt;SELECTCOLUMNS('NG - Create Request List', "Name", 'NG - Create Request List'[Created By.title], "Created", 'NG - Create Request List'[Created]),&lt;BR /&gt;SELECTCOLUMNS('NG - Get Templates Request List', "Name", 'NG - Get Templates Request List'[Created By.title], "Created", 'NG - Get Templates Request List'[Created]),&lt;BR /&gt;SELECTCOLUMNS('NG - Self Check Request List', "Name", 'NG - Self Check Request List'[Created By.title], "Created", 'NG - Self Check Request List'[Created])&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Create a relationship between NGUsersItems[Created] and your Date table[Date]:&lt;/P&gt;
&lt;P&gt;Go to the Model view.&lt;BR /&gt;Drag NGUsersItems[Created] to Date[Date] to create a relationship (make sure the data types match).&lt;BR /&gt;Update your measure if needed&lt;/P&gt;
&lt;P&gt;TotalNGUsers = DISTINCTCOUNT(NGUsersItems[Name])&lt;/P&gt;</description>
      <pubDate>Thu, 13 Nov 2025 06:51:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-fix-my-DAX-measures-for-distinct-users-but-still-be-able/m-p/4873940#M185783</guid>
      <dc:creator>bhanu_gautam</dc:creator>
      <dc:date>2025-11-13T06:51:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to fix my DAX measures for distinct users but still be able to filter the date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-fix-my-DAX-measures-for-distinct-users-but-still-be-able/m-p/4873995#M185784</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="625922" data-lia-user-login="bhanu_gautam" class="lia-mention lia-mention-user"&gt;bhanu_gautam&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Thank you for your response it worked but different to what I am aiming for in the visual. How can I make it so that the visual show the total of users per date?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;for example for Nov 2025 it shows 6 distinct users were added but it also shows the total number of distinct users for this said month&lt;BR /&gt;&lt;BR /&gt;EDIT: also apologies for this newbie questions, but the visual kinda zooms out quite far a bit is there anything I can do to not show dates that doesnt have data so that it can only show the relevant dates which has users and entries?&lt;/P&gt;</description>
      <pubDate>Thu, 13 Nov 2025 07:30:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-fix-my-DAX-measures-for-distinct-users-but-still-be-able/m-p/4873995#M185784</guid>
      <dc:creator>KejGdr</dc:creator>
      <dc:date>2025-11-13T07:30:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to fix my DAX measures for distinct users but still be able to filter the date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-fix-my-DAX-measures-for-distinct-users-but-still-be-able/m-p/4874226#M185788</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;Like mentioned by bhanu make sure you have created a relationship between your tables.&lt;BR /&gt;&lt;BR /&gt;Regarding your EDIT question. You can change the axis to categorical to achieve this. E.g.&lt;BR /&gt;&lt;BR /&gt;Data:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have relationship from 'Table (2)'[date] to 'calendar[date]'. With "continuous" setting the visual looks like this:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Now with "categorical" only dates with values are shown.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Note that this will not appear if you have date hierachy in the axis.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Nov 2025 11:00:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-fix-my-DAX-measures-for-distinct-users-but-still-be-able/m-p/4874226#M185788</guid>
      <dc:creator>ValtteriN</dc:creator>
      <dc:date>2025-11-13T11:00:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to fix my DAX measures for distinct users but still be able to filter the date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-fix-my-DAX-measures-for-distinct-users-but-still-be-able/m-p/4875050#M185804</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1400620" data-lia-user-login="KejGdr" class="lia-mention lia-mention-user"&gt;KejGdr&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;I hope you are doing well today &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;&lt;span class="lia-unicode-emoji" title=":red_heart:"&gt;❤️&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Looking at your issue &lt;FONT size="4" color="#FF0000"&gt;&lt;STRONG&gt;The Problem&lt;/STRONG&gt; &lt;/FONT&gt;is that your &lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;NGUsersItems&lt;/FONT&gt; &lt;FONT color="#FF0000"&gt;table&lt;/FONT&gt; &lt;/STRONG&gt;is disconnected from your date table, Since it is a calculated table created with &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;UNION()&lt;/STRONG&gt;&lt;/FONT&gt; ,&amp;nbsp;it does not maintain &lt;FONT color="#FF0000"&gt;relationships&lt;/FONT&gt; with your original data tables&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here are a few &lt;FONT size="4" color="#99CC00"&gt;&lt;STRONG&gt;Approaches&amp;nbsp;&lt;/STRONG&gt;&lt;/FONT&gt;to fix your &lt;STRONG&gt;&lt;U&gt;DAX&lt;/U&gt; &lt;/STRONG&gt;measures:&lt;/P&gt;&lt;P&gt;&lt;FONT size="4" color="#FF6600"&gt;&lt;STRONG&gt;First Approach :&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN&gt;Replace your calculated table with measures that can interact with date filters (Instead of &lt;STRONG&gt;Calculated Table&lt;/STRONG&gt;&lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;-- Individual measures for each table
NG_Create_Users = 
CALCULATE(
    DISTINCTCOUNT('NG - Create Request List'[Created By.title]),
    USERELATIONSHIP('Date'[Date], 'NG - Create Request List'[Created])
)

NG_GetTemplates_Users = 
CALCULATE(
    DISTINCTCOUNT('NG - Get Templates Request List'[Created By.title]),
    USERELATIONSHIP('Date'[Date], 'NG - Get Templates Request List'[Created])
)

NG_SelfCheck_Users = 
CALCULATE(
    DISTINCTCOUNT('NG - Self Check Request List'[Created By.title]),
    USERELATIONSHIP('Date'[Date], 'NG - Self Check Request List'[Created])
)

-- Combined measure
TotalNGUsers = 
VAR CreateUsers = [NG_Create_Users]
VAR GetTemplatesUsers = [NG_GetTemplates_Users]
VAR SelfCheckUsers = [NG_SelfCheck_Users]
RETURN
    CreateUsers + GetTemplatesUsers + SelfCheckUsers&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT size="4" color="#99CC00"&gt;&lt;STRONG&gt;Second Approach:&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Create a calculated table that maintains the date relationships:&lt;/LI&gt;&lt;/UL&gt;&lt;LI-CODE lang="markup"&gt;NGUsersWithDates = 
UNION(
    SELECTCOLUMNS(
        'NG - Create Request List', 
        "Name", 'NG - Create Request List'[Created By.title],
        "Date", 'NG - Create Request List'[Created]
    ),
    SELECTCOLUMNS(
        'NG - Get Templates Request List', 
        "Name", 'NG - Get Templates Request List'[Created By.title],
        "Date", 'NG - Get Templates Request List'[Created]
    ),
    SELECTCOLUMNS(
        'NG - Self Check Request List', 
        "Name", 'NG - Self Check Request List'[Created By.title],
        "Date", 'NG - Self Check Request List'[Created]
    )
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT size="4" color="#33CCCC"&gt;&lt;STRONG&gt;Third Approach: &lt;/STRONG&gt;&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#000000"&gt;(most efficient approach)&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Use &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;SUMMARIZE&lt;/STRONG&gt; &lt;/FONT&gt;and &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;CALCULATE&lt;/STRONG&gt;&lt;/FONT&gt; :&lt;/LI&gt;&lt;/UL&gt;&lt;LI-CODE lang="markup"&gt;TotalNGUsers = 
VAR CombinedTable =
    UNION(
        SUMMARIZE(
            'NG - Create Request List',
            'NG - Create Request List'[Created By.title],
            'NG - Create Request List'[Created]
        ),
        SUMMARIZE(
            'NG - Get Templates Request List',
            'NG - Get Templates Request List'[Created By.title],
            'NG - Get Templates Request List'[Created]
        ),
        SUMMARIZE(
            'NG - Self Check Request List',
            'NG - Self Check Request List'[Created By.title],
            'NG - Self Check Request List'[Created]
        )
    )
RETURN
    CALCULATE(
        DISTINCTCOUNT(CombinedTable[Created By.title]),
        USERELATIONSHIP(CombinedTable[Created], 'Date'[Date])
    )&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT size="4" color="#FFCC00"&gt;&lt;STRONG&gt;Bonus Tips:&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P class=""&gt;Make sure your &lt;STRONG&gt;date table&lt;/STRONG&gt;:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P class=""&gt;&lt;SPAN&gt;Has a proper date hierarchy&lt;/SPAN&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P class=""&gt;&lt;SPAN&gt;Is marked as a date table&lt;/SPAN&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P class=""&gt;&lt;SPAN&gt;Has relationships with your fact tables&lt;/SPAN&gt;&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;For &lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;cumulative totals &lt;/FONT&gt;(if needed)&lt;/STRONG&gt;:&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;LI-CODE lang="markup"&gt;CumulativeNGUsers = 
CALCULATE(
    [TotalNGUsers],
    FILTER(
        ALLSELECTED('Date'),
        'Date'[Date] &amp;lt;= MAX('Date'[Date])
    )
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The idea here is that you need to &lt;STRONG&gt;preserve the date column&lt;/STRONG&gt; in your &lt;STRONG&gt;combined table&lt;/STRONG&gt; and establish proper relationships with your date table for the time based filtering to work correctly&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;EM&gt;if this post helps, then I would appreciate a thumbs up&lt;/EM&gt;&lt;EM&gt;&amp;nbsp;&lt;/EM&gt;&lt;EM&gt;and&amp;nbsp;&lt;STRONG&gt;mark it as the solution&lt;/STRONG&gt;&amp;nbsp;&lt;/EM&gt;&lt;EM&gt;to help the other members find it more quickly.&lt;/EM&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 14 Nov 2025 00:22:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-fix-my-DAX-measures-for-distinct-users-but-still-be-able/m-p/4875050#M185804</guid>
      <dc:creator>Ahmed-Elfeel</dc:creator>
      <dc:date>2025-11-14T00:22:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to fix my DAX measures for distinct users but still be able to filter the date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-fix-my-DAX-measures-for-distinct-users-but-still-be-able/m-p/4876521#M185844</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1400620" data-lia-user-login="KejGdr" class="lia-mention lia-mention-user"&gt;KejGdr&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="838901" data-lia-user-login="Ahmed-Elfeel" class="lia-mention lia-mention-user"&gt;Ahmed-Elfeel&lt;/a&gt;&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="343431" data-lia-user-login="ValtteriN" class="lia-mention lia-mention-user"&gt;ValtteriN&lt;/a&gt;&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="625922" data-lia-user-login="bhanu_gautam" class="lia-mention lia-mention-user"&gt;bhanu_gautam&lt;/a&gt;&amp;nbsp;for your response to the query.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Has your issue been resolved?&lt;BR /&gt;If the response provided by the community member addressed your query, could you please confirm? It helps us ensure that the solutions provided are effective and beneficial for everyone.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for your understanding!&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 16 Nov 2025 08:08:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-fix-my-DAX-measures-for-distinct-users-but-still-be-able/m-p/4876521#M185844</guid>
      <dc:creator>v-sgandrathi</dc:creator>
      <dc:date>2025-11-16T08:08:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to fix my DAX measures for distinct users but still be able to filter the date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-fix-my-DAX-measures-for-distinct-users-but-still-be-able/m-p/4877166#M185863</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="838901" data-lia-user-login="Ahmed-Elfeel" class="lia-mention lia-mention-user"&gt;Ahmed-Elfeel&lt;/a&gt;&amp;nbsp; I will give this a try and let you know if this has fixed my problem&lt;/P&gt;</description>
      <pubDate>Mon, 17 Nov 2025 07:44:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-fix-my-DAX-measures-for-distinct-users-but-still-be-able/m-p/4877166#M185863</guid>
      <dc:creator>KejGdr</dc:creator>
      <dc:date>2025-11-17T07:44:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to fix my DAX measures for distinct users but still be able to filter the date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-fix-my-DAX-measures-for-distinct-users-but-still-be-able/m-p/4880785#M185970</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1400620" data-lia-user-login="KejGdr" class="lia-mention lia-mention-user"&gt;KejGdr&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-teams="true"&gt;Just wanted to follow up and confirm that everything has been going well on this. Please let me know if there’s anything from our end.&lt;BR /&gt;Please feel free to reach out Microsoft fabric community forum.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Nov 2025 09:31:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-fix-my-DAX-measures-for-distinct-users-but-still-be-able/m-p/4880785#M185970</guid>
      <dc:creator>v-sgandrathi</dc:creator>
      <dc:date>2025-11-20T09:31:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to fix my DAX measures for distinct users but still be able to filter the date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-fix-my-DAX-measures-for-distinct-users-but-still-be-able/m-p/4883025#M186007</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1400620" data-lia-user-login="KejGdr" class="lia-mention lia-mention-user"&gt;KejGdr&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-teams="true"&gt;Just looping back one last time to check if everything's good on your end. Let me know if you need any final support happy to assist if anything’s still open.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-teams="true"&gt;Thank you.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 23 Nov 2025 07:15:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-fix-my-DAX-measures-for-distinct-users-but-still-be-able/m-p/4883025#M186007</guid>
      <dc:creator>v-sgandrathi</dc:creator>
      <dc:date>2025-11-23T07:15:40Z</dc:date>
    </item>
  </channel>
</rss>

