<?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: Remove Maximum Cohort Period from MonthYear Row in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Remove-Maximum-Cohort-Period-from-MonthYear-Row/m-p/1366345#M24801</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="108403" data-lia-user-login="BICrazy" class="lia-mention lia-mention-user"&gt;BICrazy&lt;/a&gt;&amp;nbsp;Always more than 1 way to do things in DAX!!&lt;/P&gt;</description>
    <pubDate>Sat, 12 Sep 2020 17:49:47 GMT</pubDate>
    <dc:creator>Greg_Deckler</dc:creator>
    <dc:date>2020-09-12T17:49:47Z</dc:date>
    <item>
      <title>Remove Maximum Cohort Period from MonthYear Row</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Remove-Maximum-Cohort-Period-from-MonthYear-Row/m-p/1364648#M24744</link>
      <description>&lt;P&gt;Hello fellow members,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Need help with a Measure to not display the maximum cohort period on each row per MonthYear on the following visual.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Example&lt;/STRONG&gt;&lt;BR /&gt;MonthYear May-19 should stop at period 13&lt;BR /&gt;MonthYear June-19 should stop at period 13&lt;BR /&gt;MonthYear Jul-19 should stop at period 12 etc...&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Therefore the measure should be Max period minus 1. Hope I'm clear enough.&amp;nbsp; Thanks in advance.&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Sep 2020 14:05:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Remove-Maximum-Cohort-Period-from-MonthYear-Row/m-p/1364648#M24744</guid>
      <dc:creator>BICrazy</dc:creator>
      <dc:date>2020-09-11T14:05:40Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Maximum Cohort Period from MonthYear Row</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Remove-Maximum-Cohort-Period-from-MonthYear-Row/m-p/1364660#M24745</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="108403" data-lia-user-login="BICrazy" class="lia-mention lia-mention-user"&gt;BICrazy&lt;/a&gt;&amp;nbsp;- I am thinking something like:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure
  VAR __Calc = &amp;lt;some calc&amp;gt;
  VAR __Period = MAX('Table'[Period] // whatever is in your Columns 
  VAR __Num = COUNTROWS(ALL('Table'[Period]),[Period]&amp;gt;__Period
RETURN
  IF(ISBLANK(__Num),BLANK(),__Calc)&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 11 Sep 2020 14:11:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Remove-Maximum-Cohort-Period-from-MonthYear-Row/m-p/1364660#M24745</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2020-09-11T14:11:13Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Maximum Cohort Period from MonthYear Row</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Remove-Maximum-Cohort-Period-from-MonthYear-Row/m-p/1364682#M24746</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="108403" data-lia-user-login="BICrazy" class="lia-mention lia-mention-user"&gt;BICrazy&lt;/a&gt; , in your case these measure on top of you measure should work &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;if([Measure]=0, blank(), [measure]) or&lt;/P&gt;
&lt;P&gt;sumx(values(Table[Monthyear]),if([Measure]=0, blank(), [measure]))&lt;/P&gt;</description>
      <pubDate>Fri, 11 Sep 2020 14:19:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Remove-Maximum-Cohort-Period-from-MonthYear-Row/m-p/1364682#M24746</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2020-09-11T14:19:02Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Maximum Cohort Period from MonthYear Row</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Remove-Maximum-Cohort-Period-from-MonthYear-Row/m-p/1364817#M24749</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="108403" data-lia-user-login="BICrazy" class="lia-mention lia-mention-user"&gt;BICrazy&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Include our measure within an IF condition like:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Measure New = 

IF( 
    SELECTEDVALUE(Table[Day])&amp;gt; 10 , 
    BLANK() , 
    [Your%  Measure]
)   &lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;________________________&lt;/P&gt;&lt;P&gt;If my answer was helpful, please consider &lt;STRONG&gt;&lt;I&gt;Accept it as the solution&lt;/I&gt;&lt;/STRONG&gt;&lt;I&gt; to help the other members find it&lt;/I&gt;&lt;/P&gt;&lt;P&gt;Click on the &lt;STRONG&gt;Thumbs-Up icon &lt;/STRONG&gt;if you like this reply &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.youtube.com/channel/UCKwBEguA8IlBubIobaOormg?sub_confirmation=1" target="_blank"&gt;&lt;FONT color="blue"&gt;YouTube&lt;/FONT&gt;&lt;/A&gt;&amp;nbsp; &lt;A href="https://linkedin.com/in/fowmy" target="_blank"&gt;&lt;FONT color="blue"&gt;LinkedIn&lt;/FONT&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Sep 2020 14:53:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Remove-Maximum-Cohort-Period-from-MonthYear-Row/m-p/1364817#M24749</guid>
      <dc:creator>Fowmy</dc:creator>
      <dc:date>2020-09-11T14:53:49Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Maximum Cohort Period from MonthYear Row</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Remove-Maximum-Cohort-Period-from-MonthYear-Row/m-p/1366212#M24797</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="52518" data-lia-user-login="Fowmy" class="lia-mention lia-mention-user"&gt;Fowmy&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="148838" data-lia-user-login="amitchandak" class="lia-mention lia-mention-user"&gt;amitchandak&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="313" data-lia-user-login="Greg_Deckler" class="lia-mention lia-mention-user"&gt;Greg_Deckler&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;All of the measures you guys proposed worked in my case.&amp;nbsp; Thanks a mill for your help.&lt;/P&gt;</description>
      <pubDate>Sat, 12 Sep 2020 13:41:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Remove-Maximum-Cohort-Period-from-MonthYear-Row/m-p/1366212#M24797</guid>
      <dc:creator>BICrazy</dc:creator>
      <dc:date>2020-09-12T13:41:41Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Maximum Cohort Period from MonthYear Row</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Remove-Maximum-Cohort-Period-from-MonthYear-Row/m-p/1366345#M24801</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="108403" data-lia-user-login="BICrazy" class="lia-mention lia-mention-user"&gt;BICrazy&lt;/a&gt;&amp;nbsp;Always more than 1 way to do things in DAX!!&lt;/P&gt;</description>
      <pubDate>Sat, 12 Sep 2020 17:49:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Remove-Maximum-Cohort-Period-from-MonthYear-Row/m-p/1366345#M24801</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2020-09-12T17:49:47Z</dc:date>
    </item>
  </channel>
</rss>

