<?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: Calculate number from today to end of year in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-number-from-today-to-end-of-year/m-p/3991745#M154874</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="748445" data-lia-user-login="Jhadur" class="lia-mention lia-mention-user"&gt;Jhadur&lt;/a&gt;&amp;nbsp;Where the red squigly line begins, remove the ", ". Well, should be able to remove the "'BC Gate Status', " entirely. Just the [BDCD MONTH] &amp;lt;= __MaxDate after the &amp;amp;&amp;amp;&lt;/P&gt;</description>
    <pubDate>Thu, 13 Jun 2024 19:00:46 GMT</pubDate>
    <dc:creator>Greg_Deckler</dc:creator>
    <dc:date>2024-06-13T19:00:46Z</dc:date>
    <item>
      <title>Calculate number from today to end of year</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-number-from-today-to-end-of-year/m-p/3984214#M154854</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am new to Power BI. I need to calculate the number of business cases remaining from "today" to the end of the fiscal year, Oct. 31st.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;BC Gate Status is the table with BCDC MONTH holding the dates of the business cases and INITIATIVE NAME being the name of the business case.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;CA PPM REFERENCE # INITIATIVE NAME BCDC MONTH

IDE-00012580	BC 1	March, 2024
IDE-00010932	BC 2	April, 2024
IDE-00014835	BC 3	May, 2024
IDE-00014841	BC 4	June, 2024
IDE-00014820	BC 5	June, 2024
IDE-00012729	BC 6	June, 2024
IDE-00014243	BC 7	July, 2024
IDE-00011566	BC 8	July, 2024
IDE-00014788	BC 9	July, 2024
IDE-00014792	BC 10	July, 2024
IDE-00014802	BC 11	October, 2024
IDE-00014826	BC 12	October, 2024
IDE-00012712	BC 13	October, 2024
IDE-00014791	BC 14	October, 2024
IDE-00014837	BC 15	November, 2024&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jun 2024 17:35:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-number-from-today-to-end-of-year/m-p/3984214#M154854</guid>
      <dc:creator>Jhadur</dc:creator>
      <dc:date>2024-06-10T17:35:33Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate number from today to end of year</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-number-from-today-to-end-of-year/m-p/3984290#M154855</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="748445" data-lia-user-login="Jhadur" class="lia-mention lia-mention-user"&gt;Jhadur&lt;/a&gt;&amp;nbsp;Is BDC Month a date or text?&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jun 2024 18:42:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-number-from-today-to-end-of-year/m-p/3984290#M154855</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2024-06-10T18:42:39Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate number from today to end of year</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-number-from-today-to-end-of-year/m-p/3984313#M154856</link>
      <description>&lt;P&gt;It is a date.&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jun 2024 18:58:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-number-from-today-to-end-of-year/m-p/3984313#M154856</guid>
      <dc:creator>Jhadur</dc:creator>
      <dc:date>2024-06-10T18:58:24Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate number from today to end of year</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-number-from-today-to-end-of-year/m-p/3984321#M154857</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="748445" data-lia-user-login="Jhadur" class="lia-mention lia-mention-user"&gt;Jhadur&lt;/a&gt;&amp;nbsp;OK:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure =
  VAR __MinDate = TODAY()
  VAR __MaxDate = DATE( YEAR( __MinDate ), 10, 31 )
  VAR __Table = FILTER( 'BC Gate Status', [BCDC MONTH] &amp;gt;= __MinDate &amp;amp;&amp;amp; [BDC MONTH] &amp;lt;= __MaxDate )
  VAR __Result = COUNTROWS( __Table )
RETURN
  __Result&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 10 Jun 2024 19:05:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-number-from-today-to-end-of-year/m-p/3984321#M154857</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2024-06-10T19:05:07Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate number from today to end of year</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-number-from-today-to-end-of-year/m-p/3984357#M154858</link>
      <description>&lt;P&gt;Thanks Greg! I am getting this error with the measure. Any idea how I can fix that?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jun 2024 20:01:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-number-from-today-to-end-of-year/m-p/3984357#M154858</guid>
      <dc:creator>Jhadur</dc:creator>
      <dc:date>2024-06-10T20:01:05Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate number from today to end of year</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-number-from-today-to-end-of-year/m-p/3984464#M154859</link>
      <description>&lt;P&gt;There are two things, based on the post,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I believe you have to paste only once and you have shared 2 images.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Check what&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; pasted the code&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;it should be somewhat like:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&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>Mon, 10 Jun 2024 21:48:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-number-from-today-to-end-of-year/m-p/3984464#M154859</guid>
      <dc:creator>sevenhills</dc:creator>
      <dc:date>2024-06-10T21:48:23Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate number from today to end of year</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-number-from-today-to-end-of-year/m-p/3991329#M154860</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="29249" data-lia-user-login="sevenhills" class="lia-mention lia-mention-user"&gt;sevenhills&lt;/a&gt;&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;/P&gt;&lt;P&gt;I did only paste once in Power BI. I pasted 2 images here to show both of the issues I am having. First is that Power BI won't recognize the 2nd [BCDC MONTH] in the formula. I get an unexpected parameter and cannot find name. The second image shows the error in yellow that I get on the whole formula.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jun 2024 14:07:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-number-from-today-to-end-of-year/m-p/3991329#M154860</guid>
      <dc:creator>Jhadur</dc:creator>
      <dc:date>2024-06-13T14:07:38Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate number from today to end of year</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-number-from-today-to-end-of-year/m-p/3991745#M154874</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="748445" data-lia-user-login="Jhadur" class="lia-mention lia-mention-user"&gt;Jhadur&lt;/a&gt;&amp;nbsp;Where the red squigly line begins, remove the ", ". Well, should be able to remove the "'BC Gate Status', " entirely. Just the [BDCD MONTH] &amp;lt;= __MaxDate after the &amp;amp;&amp;amp;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jun 2024 19:00:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-number-from-today-to-end-of-year/m-p/3991745#M154874</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2024-06-13T19:00:46Z</dc:date>
    </item>
  </channel>
</rss>

