<?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: Dax on filtering duplicates and counting with text in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-on-filtering-duplicates-and-counting-with-text/m-p/956533#M10992</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="212122" data-lia-user-login="Yarisch77" class="lia-mention lia-mention-user"&gt;Yarisch77&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Measure = CALCULATE(DISTINCTCOUNT('Table'[Control Number]),filter(table,SEARCH("A";'Table'[Control Number];;-1)&amp;gt;0 &amp;amp;&amp;amp; table[date]&amp;gt;=date(2019,1,1) &amp;amp;&amp;amp;&amp;nbsp;table[date]&amp;lt;=date(2019,1,1) &amp;amp;&amp;amp; table[Status]=&lt;SPAN&gt;"Completed"))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks &amp;amp; regards,&lt;BR /&gt;Pravin Wattamwar&lt;BR /&gt;&lt;A href="http://www.linkedin.com/in/pravin-p-wattamwar" target="_blank"&gt;www.linkedin.com/in/pravin-p-wattamwar&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;If I resolve your problem Mark it as a solution and give kudos.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 03 Mar 2020 08:15:07 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2020-03-03T08:15:07Z</dc:date>
    <item>
      <title>Dax on filtering duplicates and counting with text</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-on-filtering-duplicates-and-counting-with-text/m-p/956377#M10974</link>
      <description>&lt;P&gt;Hi, I am struggeling with thefollowing table format:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Control Number&lt;/TD&gt;&lt;TD&gt;Title&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;PPG-E0001&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;PPG-E0001&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;PPG-E0002&lt;/TD&gt;&lt;TD&gt;C&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;PPG-E0002&lt;/TD&gt;&lt;TD&gt;C&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;PPG-E0002&lt;/TD&gt;&lt;TD&gt;C&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;PPG-A0001&lt;/TD&gt;&lt;TD&gt;F&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;PPG-A0001&lt;/TD&gt;&lt;TD&gt;F&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;PPG-A0001&lt;/TD&gt;&lt;TD&gt;F&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;PPG-C0001&lt;/TD&gt;&lt;TD&gt;I&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to use a Dax function in order to do the following things:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. Count only unique values of the Row Control Number (Not duplicates)&lt;/P&gt;&lt;P&gt;2. After that I want to be able count only the values which include for example "C" or "A" or "E"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;At the end I should get a measure for example for "PPG-E" =&amp;nbsp; 2&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I ve tried with&amp;nbsp;DISTINCTCOUNT function but didnt get it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To be honest I am a beginner with Power BI and would appreciate any help for this problem.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thx for ur help&lt;/P&gt;</description>
      <pubDate>Tue, 03 Mar 2020 06:25:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-on-filtering-duplicates-and-counting-with-text/m-p/956377#M10974</guid>
      <dc:creator>Yarisch77</dc:creator>
      <dc:date>2020-03-03T06:25:39Z</dc:date>
    </item>
    <item>
      <title>Re: Dax on filtering duplicates and counting with text</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-on-filtering-duplicates-and-counting-with-text/m-p/956421#M10976</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="212122" data-lia-user-login="Yarisch77" class="lia-mention lia-mention-user"&gt;Yarisch77&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;if i understand you correct&lt;/P&gt;
&lt;P&gt;try measures:&lt;/P&gt;
&lt;P&gt;1.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;unique values = CALCULATE(DISTINCTCOUNT(Table[Control Number]))&lt;/LI-CODE&gt;
&lt;P&gt;2.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;unique values by Title = CALCULATE(DISTINCTCOUNT(Table[Control Number]), ALLEXCEPT(Table, Table[Title]))&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Mar 2020 07:00:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-on-filtering-duplicates-and-counting-with-text/m-p/956421#M10976</guid>
      <dc:creator>az38</dc:creator>
      <dc:date>2020-03-03T07:00:55Z</dc:date>
    </item>
    <item>
      <title>Re: Dax on filtering duplicates and counting with text</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-on-filtering-duplicates-and-counting-with-text/m-p/956522#M10990</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thx for ur quick reply.&amp;nbsp; This goes into a good direction. I took ur idea and played around a little. AFter a while I got this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Measure = CALCULATE(DISTINCTCOUNT('Table'[Control Number]);SEARCH("A";'Table'[Control Number];;-1)&amp;gt;0)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;This worked well without counting duplicates and only counting with letter "E". Now I added 2 more rows with additional Infos =&amp;gt; "Date" and "Status". The idea is to follow the above Measure but put two conditions:&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;1. if "Date" is between for example "01.01.2019 and 20.01.2019"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;2. and if "Status" is for example "Completed"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Thx in advance for ur help&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 03 Mar 2020 08:10:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-on-filtering-duplicates-and-counting-with-text/m-p/956522#M10990</guid>
      <dc:creator>Yarisch77</dc:creator>
      <dc:date>2020-03-03T08:10:07Z</dc:date>
    </item>
    <item>
      <title>Re: Dax on filtering duplicates and counting with text</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-on-filtering-duplicates-and-counting-with-text/m-p/956533#M10992</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="212122" data-lia-user-login="Yarisch77" class="lia-mention lia-mention-user"&gt;Yarisch77&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Measure = CALCULATE(DISTINCTCOUNT('Table'[Control Number]),filter(table,SEARCH("A";'Table'[Control Number];;-1)&amp;gt;0 &amp;amp;&amp;amp; table[date]&amp;gt;=date(2019,1,1) &amp;amp;&amp;amp;&amp;nbsp;table[date]&amp;lt;=date(2019,1,1) &amp;amp;&amp;amp; table[Status]=&lt;SPAN&gt;"Completed"))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks &amp;amp; regards,&lt;BR /&gt;Pravin Wattamwar&lt;BR /&gt;&lt;A href="http://www.linkedin.com/in/pravin-p-wattamwar" target="_blank"&gt;www.linkedin.com/in/pravin-p-wattamwar&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;If I resolve your problem Mark it as a solution and give kudos.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Mar 2020 08:15:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-on-filtering-duplicates-and-counting-with-text/m-p/956533#M10992</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-03-03T08:15:07Z</dc:date>
    </item>
    <item>
      <title>Re: Dax on filtering duplicates and counting with text</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-on-filtering-duplicates-and-counting-with-text/m-p/956548#M10995</link>
      <description>&lt;P&gt;Hey,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Great formula, but it gave me a syntax error. Here's is the adapted formula with the original values from my company, may u see the error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Measure 2 = CALCULATE(DISTINCTCOUNT('CPro Server'[Control Number]);filter('CPro Server'SEARCH("A";'CPro Server'[Control Number];;-1)&amp;gt;0 &amp;amp;&amp;amp; 'CPro Server'[Action Request Due Date]&amp;gt;=date(2019;1;1) &amp;amp;&amp;amp; 'CPro Server'[Action Request Due Date]&amp;lt;=date(2019;1;1) &amp;amp;&amp;amp; 'CPro Server'[Status]="Completed"))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Thx in advance for ur help&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Mar 2020 08:30:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-on-filtering-duplicates-and-counting-with-text/m-p/956548#M10995</guid>
      <dc:creator>Yarisch77</dc:creator>
      <dc:date>2020-03-03T08:30:27Z</dc:date>
    </item>
    <item>
      <title>Re: Dax on filtering duplicates and counting with text</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-on-filtering-duplicates-and-counting-with-text/m-p/956563#M10997</link>
      <description>&lt;P&gt;Could you share what syntax error you got?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It may be some syntax issue like missing closing parenthesis or comma.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Pravin&lt;/P&gt;</description>
      <pubDate>Tue, 03 Mar 2020 08:42:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-on-filtering-duplicates-and-counting-with-text/m-p/956563#M10997</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-03-03T08:42:47Z</dc:date>
    </item>
    <item>
      <title>Re: Dax on filtering duplicates and counting with text</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-on-filtering-duplicates-and-counting-with-text/m-p/956567#M10998</link>
      <description>&lt;P&gt;It says....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Wrong Syntax für "SEARCH".(DAX(CALCULATE(DISTINCTCOUNT('CPro Server'[Control Number]),filter('CPro Server'SEARCH("A",'CPro Server'[Control Number],,-1)&amp;gt;0 &amp;amp;&amp;amp; 'CPro Server'[Action Request Due Date]&amp;gt;=date(2019,1,1) &amp;amp;&amp;amp; 'CPro Server'[Action Request Due Date]&amp;lt;=date(2019,1,1) &amp;amp;&amp;amp; 'CPro Server'[Status]="Completed"))).)&lt;/P&gt;</description>
      <pubDate>Tue, 03 Mar 2020 08:45:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-on-filtering-duplicates-and-counting-with-text/m-p/956567#M10998</guid>
      <dc:creator>Yarisch77</dc:creator>
      <dc:date>2020-03-03T08:45:51Z</dc:date>
    </item>
    <item>
      <title>Re: Dax on filtering duplicates and counting with text</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-on-filtering-duplicates-and-counting-with-text/m-p/956603#M11001</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="212122" data-lia-user-login="Yarisch77" class="lia-mention lia-mention-user"&gt;Yarisch77&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;you have missed comma (,) after table name in filter section.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try to write dax by yourself step by step so that you will get know more about issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards,&lt;BR /&gt;Pravin Wattamwar&lt;BR /&gt;&lt;A href="http://www.linkedin.com/in/pravin-p-wattamwar" target="_blank"&gt;www.linkedin.com/in/pravin-p-wattamwar&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;If I resolve your problem Mark it as a solution and give kudos.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Mar 2020 08:58:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-on-filtering-duplicates-and-counting-with-text/m-p/956603#M11001</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-03-03T08:58:19Z</dc:date>
    </item>
    <item>
      <title>Re: Dax on filtering duplicates and counting with text</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-on-filtering-duplicates-and-counting-with-text/m-p/956718#M11006</link>
      <description>&lt;P&gt;Hey,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thx a lot , works perfect now. Just one last question:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If i am going from this...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Measure 2 = CALCULATE(DISTINCTCOUNT('CPro Server'[Control Number]);filter('CPro Server';SEARCH("A";'CPro Server'[Control Number];;-1)&amp;gt;0 &amp;amp;&amp;amp; 'CPro Server'[Action Request Due Date]&amp;gt;=date(2019;1;1) &amp;amp;&amp;amp; 'CPro Server'[Action Request Due Date]&amp;lt;=date(2019;12;1) &amp;amp;&amp;amp; 'CPro Server'[Status]="Completed"))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;...and instead to define a date range I want to specify for example "last 30 days from today" or "comming 90 days from today", how do I do that???&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Thx a lot in advance&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 03 Mar 2020 09:56:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-on-filtering-duplicates-and-counting-with-text/m-p/956718#M11006</guid>
      <dc:creator>Yarisch77</dc:creator>
      <dc:date>2020-03-03T09:56:09Z</dc:date>
    </item>
    <item>
      <title>Re: Dax on filtering duplicates and counting with text</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-on-filtering-duplicates-and-counting-with-text/m-p/956785#M11008</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="212122" data-lia-user-login="Yarisch77" class="lia-mention lia-mention-user"&gt;Yarisch77&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Last 30 days or 1 month = CALCULATE(DISTINCTCOUNT('CPro Server'[Control Number]);filter('CPro Server';SEARCH("A";'CPro Server'[Control Number];;-1)&amp;gt;0 &amp;amp;&amp;amp; 'CPro Server'[Action Request Due Date]&amp;gt;=dateadd(today(),-1,month) &amp;amp;&amp;amp; 'CPro Server'[Action Request Due Date]&amp;lt;=Today() &amp;amp;&amp;amp; 'CPro Server'[Status]="Completed"))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks &amp;amp; regards,&lt;BR /&gt;Pravin Wattamwar&lt;BR /&gt;&lt;A href="http://www.linkedin.com/in/pravin-p-wattamwar" target="_blank"&gt;www.linkedin.com/in/pravin-p-wattamwar&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;If I resolve your problem Mark it as a solution and give kudos.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Mar 2020 10:49:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-on-filtering-duplicates-and-counting-with-text/m-p/956785#M11008</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-03-03T10:49:20Z</dc:date>
    </item>
    <item>
      <title>Re: Dax on filtering duplicates and counting with text</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-on-filtering-duplicates-and-counting-with-text/m-p/960227#M11181</link>
      <description>&lt;P&gt;Thx for ur reply,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The formula gives me the following error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The first argument to 'DATEADD' must specify a column&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;</description>
      <pubDate>Thu, 05 Mar 2020 09:33:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-on-filtering-duplicates-and-counting-with-text/m-p/960227#M11181</guid>
      <dc:creator>Yarisch77</dc:creator>
      <dc:date>2020-03-05T09:33:15Z</dc:date>
    </item>
    <item>
      <title>Re: Dax on filtering duplicates and counting with text</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-on-filtering-duplicates-and-counting-with-text/m-p/960239#M11184</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="212122" data-lia-user-login="Yarisch77" class="lia-mention lia-mention-user"&gt;Yarisch77&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;instead of&amp;nbsp;&lt;SPAN&gt;dateadd(today(),-1,month)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;you can use date(year(today()),month(today)-1,day(today()))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards,&lt;BR /&gt;Pravin Wattamwar&lt;BR /&gt;&lt;A href="http://www.linkedin.com/in/pravin-p-wattamwar" target="_blank"&gt;www.linkedin.com/in/pravin-p-wattamwar&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;If I resolve your problem Mark it as a solution and give kudos.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Mar 2020 09:40:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-on-filtering-duplicates-and-counting-with-text/m-p/960239#M11184</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-03-05T09:40:11Z</dc:date>
    </item>
    <item>
      <title>Re: Dax on filtering duplicates and counting with text</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-on-filtering-duplicates-and-counting-with-text/m-p/960271#M11188</link>
      <description>&lt;P&gt;This actually could also work, giving the same result for the las 60 days or not?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Measure 4 = CALCULATE(DISTINCTCOUNT('CPro Server'[Control Number]);filter('CPro Server';SEARCH("A";'CPro Server'[Control Number];;-1)&amp;gt;0 &amp;amp;&amp;amp; 'CPro Server'[Action Request Due Date]&amp;gt;= &lt;STRONG&gt;EOMONTH(TODAY();-2)&lt;/STRONG&gt; &amp;amp;&amp;amp; 'CPro Server'[Action Request Due Date]&amp;lt;=Today() &amp;amp;&amp;amp; 'CPro Server'[Status]="Completed"))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;....&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 05 Mar 2020 09:59:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-on-filtering-duplicates-and-counting-with-text/m-p/960271#M11188</guid>
      <dc:creator>Yarisch77</dc:creator>
      <dc:date>2020-03-05T09:59:26Z</dc:date>
    </item>
    <item>
      <title>Re: Dax on filtering duplicates and counting with text</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-on-filtering-duplicates-and-counting-with-text/m-p/960347#M11195</link>
      <description>&lt;P&gt;&amp;nbsp;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="212122" data-lia-user-login="Yarisch77" class="lia-mention lia-mention-user"&gt;Yarisch77&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;this will take whole two months in account.&amp;nbsp;&lt;/P&gt;&lt;P&gt;It will take last date from previous month to today.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think your requirement is same day from last month to today.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have provided answer for the same.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards,&lt;BR /&gt;Pravin Wattamwar&lt;BR /&gt;&lt;A href="http://www.linkedin.com/in/pravin-p-wattamwar" target="_blank"&gt;www.linkedin.com/in/pravin-p-wattamwar&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;If I resolve your problem Mark it as a solution and give kudos.&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Mar 2020 10:54:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-on-filtering-duplicates-and-counting-with-text/m-p/960347#M11195</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-03-05T10:54:07Z</dc:date>
    </item>
  </channel>
</rss>

