<?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 Need help on the DAX formulation in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-on-the-DAX-formulation/m-p/2824341#M89743</link>
    <description>&lt;P&gt;I would like to prepare a PBI report with below parameter.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;Net New – Any user who used the Application in the last month and hasn't ever used before.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Any user who used Application in the last month (e.g., Sep 2022), but didn’t use it for over 6 months before Last month (e.g., didn’t use in the timeframe of Aug –Mar 2022).&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;SPAN&gt;Any body can help on how to prepare the DAX formula for above condition.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 07 Oct 2022 02:44:26 GMT</pubDate>
    <dc:creator>lavadba</dc:creator>
    <dc:date>2022-10-07T02:44:26Z</dc:date>
    <item>
      <title>Need help on the DAX formulation</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-on-the-DAX-formulation/m-p/2824341#M89743</link>
      <description>&lt;P&gt;I would like to prepare a PBI report with below parameter.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;Net New – Any user who used the Application in the last month and hasn't ever used before.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Any user who used Application in the last month (e.g., Sep 2022), but didn’t use it for over 6 months before Last month (e.g., didn’t use in the timeframe of Aug –Mar 2022).&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;SPAN&gt;Any body can help on how to prepare the DAX formula for above condition.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Oct 2022 02:44:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-on-the-DAX-formulation/m-p/2824341#M89743</guid>
      <dc:creator>lavadba</dc:creator>
      <dc:date>2022-10-07T02:44:26Z</dc:date>
    </item>
    <item>
      <title>Re: Need help on the DAX formulation</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-on-the-DAX-formulation/m-p/2824415#M89748</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I usually try to solve this types of problem by using &lt;STRONG&gt;INTERSECT&lt;/STRONG&gt; and &lt;STRONG&gt;EXCEPT&lt;/STRONG&gt; DAX functions.&lt;/P&gt;
&lt;P&gt;If possible, please share your sample pbix file's link here, and then I can try to look into it to come up with a proposal.&lt;/P&gt;
&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Fri, 07 Oct 2022 03:19:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-on-the-DAX-formulation/m-p/2824415#M89748</guid>
      <dc:creator>Jihwan_Kim</dc:creator>
      <dc:date>2022-10-07T03:19:45Z</dc:date>
    </item>
    <item>
      <title>Re: Need help on the DAX formulation</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-on-the-DAX-formulation/m-p/2830486#M90159</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="451015" data-lia-user-login="lavadba" class="lia-mention lia-mention-user"&gt;lavadba&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Based on your description, I have created a simple sample:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Please try:&lt;/P&gt;
&lt;P&gt;First create three measures:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Count Last Month = COUNTX(FILTER('Table',MONTH([Date])=MONTH(TODAY())-1),[User])

Count Before = COUNTX(FILTER('Table',MONTH([Date])&amp;lt;MONTH(TODAY())-1),[User])

Count 6 Month Before Last Month = COUNTX(FILTER('Table',MONTH([Date])&amp;lt;MONTH(TODAY())-1&amp;amp;&amp;amp;MONTH([Date])&amp;gt;MONTH(TODAY())-8),[User])

&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then create a new table with [User] Column and rename it:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Apply the measures to the visual level filter:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Recreate a new table for users who&amp;nbsp;&lt;SPAN&gt;didn’t use it for over 6 months before Last month and apply filter:&lt;/SPAN&gt;&lt;/P&gt;
&lt;DIV id="tinyMceEditorvjianbolimsft_3" class=""&gt;&amp;nbsp;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Final output:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P style="background: white; margin: 7.5pt 0in 0in 0in;"&gt;&lt;SPAN&gt;Best Regards,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="background: white; margin: 7.5pt 0in 0in 0in;"&gt;&lt;SPAN&gt;Jianbo Li&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="background: white; margin: 7.5pt 0in 0in 0in;"&gt;&lt;SPAN&gt;If this post&amp;nbsp;&lt;STRONG&gt;&lt;I&gt;helps, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;I&gt;Accept it as the solution&amp;nbsp;to help the other members find it more quickly.&lt;/I&gt;&lt;/STRONG&gt;&lt;/I&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Mon, 10 Oct 2022 09:32:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-on-the-DAX-formulation/m-p/2830486#M90159</guid>
      <dc:creator>v-jianboli-msft</dc:creator>
      <dc:date>2022-10-10T09:32:19Z</dc:date>
    </item>
    <item>
      <title>Re: Need help on the DAX formulation</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-on-the-DAX-formulation/m-p/2837917#M90607</link>
      <description>&lt;P&gt;I am unable to upload the pbix file here.&amp;nbsp; attaching the screen shot of the data. please let me know is there any other way.&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;</description>
      <pubDate>Thu, 13 Oct 2022 00:11:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-on-the-DAX-formulation/m-p/2837917#M90607</guid>
      <dc:creator>lavadba</dc:creator>
      <dc:date>2022-10-13T00:11:26Z</dc:date>
    </item>
    <item>
      <title>Re: Need help on the DAX formulation</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-on-the-DAX-formulation/m-p/2837972#M90611</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="451015" data-lia-user-login="lavadba" class="lia-mention lia-mention-user"&gt;lavadba&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I can't get enough details from your&amp;nbsp;&lt;SPAN&gt;screen shot. Could you please provide more details about your data? Such as another month and your source table.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Please provide me with more details about your table and your problem or share me with your pbix file after&amp;nbsp;&lt;STRONG&gt;removing sensitive data.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Refer to:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fcommunity.powerbi.com%2Ft5%2FCommunity-Blog%2FHow-to-provide-sample-data-in-the-Power-BI-Forum%2Fba-p%2F963216&amp;amp;data=05%7C01%7Cv-jianboli%40microsoft.com%7Ca7ce12be0f454896a61208da8034281b%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637963258750159993%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;amp;sdata=orVyE0%2FImc2MEFUqXtCveK0uf33594f67ZDxb8ybuNI%3D&amp;amp;reserved=0" target="_blank"&gt;How to provide sample data in the Power BI Forum&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fcommunity.powerbi.com%2Ft5%2FCommunity-Blog%2FHow-to-Get-Your-Question-Answered-Quickly%2Fba-p%2F38490&amp;amp;data=05%7C01%7Cv-jianboli%40microsoft.com%7Ca7ce12be0f454896a61208da8034281b%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637963258750159993%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;amp;sdata=XocTq9o6TjxbxJqTak20E3kKp7q5HxKTNZef7xESMV0%3D&amp;amp;reserved=0" target="_blank"&gt;How to Get Your Question Answered Quickly&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;Jianbo Li&lt;/P&gt;
&lt;P&gt;If this post&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;helps&lt;/EM&gt;&lt;/STRONG&gt;, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&lt;/EM&gt;&lt;/STRONG&gt;&amp;nbsp;to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Oct 2022 01:25:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-on-the-DAX-formulation/m-p/2837972#M90611</guid>
      <dc:creator>v-jianboli-msft</dc:creator>
      <dc:date>2022-10-13T01:25:12Z</dc:date>
    </item>
    <item>
      <title>Re: Need help on the DAX formulation</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-on-the-DAX-formulation/m-p/2837994#M90617</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;SPAN&gt;v-jianboli,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Please find the link below which contains the sample data.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://1drv.ms/u/s!AviWXdHQvbntpEuJaStqa9SuESUf?e=iaIqRp" target="_blank"&gt;https://1drv.ms/u/s!AviWXdHQvbntpEuJaStqa9SuESUf?e=iaIqRp&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Below conditions are is the requirement to create a trend chart for users.&lt;/P&gt;&lt;P&gt;Trend chart showing monthly usage trends for the following personas of users:&lt;/P&gt;&lt;P&gt;o Net New – Any user who used at all before application in the focus month and hasn't ever used application.&lt;/P&gt;&lt;P&gt;o Long-Regained - Any user who used application in the focus month (e.g., Sep 2022), but didn’t use it for over 6 months before focus month (e.g., didn’t use in the timeframe of Jul –Feb 2022) AND used it at least once before 6 months (i.e. before Feb 2022).&lt;/P&gt;&lt;P&gt;o Short-Regained - Any user who used application in the focus month (e.g., Sep 2022), but didn’t use it in 1 months before focus month (e.g., didn’t use in the timeframe of July 2022) AND used it between the last 2 to 6 months period (e.g., used it at least once in the period of June 2022 - Feb 2022).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Oct 2022 01:36:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-on-the-DAX-formulation/m-p/2837994#M90617</guid>
      <dc:creator>lavadba</dc:creator>
      <dc:date>2022-10-13T01:36:40Z</dc:date>
    </item>
  </channel>
</rss>

