<?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: SUMX formula to filter on Measure that provides text - not working in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-formula-to-filter-on-Measure-that-provides-text-not-working/m-p/3174063#M114518</link>
    <description>&lt;P&gt;Thankyou, i apreciate your help and explanations.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 05 Apr 2023 14:26:06 GMT</pubDate>
    <dc:creator>guanel1</dc:creator>
    <dc:date>2023-04-05T14:26:06Z</dc:date>
    <item>
      <title>SUMX formula to filter on Measure that provides text - not working</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-formula-to-filter-on-Measure-that-provides-text-not-working/m-p/3100410#M108970</link>
      <description>&lt;P&gt;I created a DAX as below that gives me the Current fiscal year - which is "FY2023".&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;&lt;FONT color="#FF0000"&gt;Current FY&lt;/FONT&gt; = MAX('Table 1'[FY])&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;This is a text field.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I then want to filter the Billed Hours to only show the hours from this Fiscal Year. I created this DAX:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;Hours Billed = SUMX(FILTER('Table 1','Table 1'[FY]=&lt;FONT color="#FF0000"&gt;[Current FY]&lt;/FONT&gt;),'Table 1'[Hours])&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;However, this is not working. It is not filtering out any of the hours.&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;When I substitute the measure &lt;FONT color="#FF0000"&gt;[Current FY]&lt;/FONT&gt; above with &lt;FONT color="#FF0000"&gt;"FY2023"&lt;/FONT&gt; then it works. &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;FONT color="#0000FF"&gt;Hours Billed = SUMX(FILTER('Table 1','Table 1'[FY]=&lt;FONT color="#FF0000"&gt;"FY2023"&lt;/FONT&gt;),'Table 1'[Hours])&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;This makes me think that the text is having issues - but the text that it is looking for comes from the same table so I'm not sure what is the issue.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;I cannot just put "FY2023" in the formula because&amp;nbsp;I need to keep the result dynamic over time. When new data is added, the hours billed sum updates to the new FY data.&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;Thank you.&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Feb 2023 02:23:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-formula-to-filter-on-Measure-that-provides-text-not-working/m-p/3100410#M108970</guid>
      <dc:creator>guanel1</dc:creator>
      <dc:date>2023-02-27T02:23:31Z</dc:date>
    </item>
    <item>
      <title>Re: SUMX formula to filter on Measure that provides text - not working</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-formula-to-filter-on-Measure-that-provides-text-not-working/m-p/3100480#M108973</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="268450" data-lia-user-login="guanel1" class="lia-mention lia-mention-user"&gt;guanel1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Both [Current FY] and [Hours Billed] are measures right? How does your visual look like? Which columns / from which tables are involved?&lt;/P&gt;</description>
      <pubDate>Mon, 27 Feb 2023 02:55:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-formula-to-filter-on-Measure-that-provides-text-not-working/m-p/3100480#M108973</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-02-27T02:55:28Z</dc:date>
    </item>
    <item>
      <title>Re: SUMX formula to filter on Measure that provides text - not working</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-formula-to-filter-on-Measure-that-provides-text-not-working/m-p/3101891#M109090</link>
      <description>&lt;P&gt;Here is the example data to help explain my issue.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Here are the measures i have created.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Here is what happens in PBI. I want to take the hours billed and forecast hours for the current year (this needs to stay dynamic so that this report can be used each year).&amp;nbsp;&lt;/P&gt;&lt;P&gt;The MEASURE NOT WORKING is where i tried to used the measures as listed above. The other table is where I replaced the measure [Current FY] with "FY2023" - and then it works.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Feb 2023 15:51:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-formula-to-filter-on-Measure-that-provides-text-not-working/m-p/3101891#M109090</guid>
      <dc:creator>guanel1</dc:creator>
      <dc:date>2023-02-27T15:51:06Z</dc:date>
    </item>
    <item>
      <title>Re: SUMX formula to filter on Measure that provides text - not working</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-formula-to-filter-on-Measure-that-provides-text-not-working/m-p/3101955#M109102</link>
      <description>&lt;P&gt;So, looking at it more:&amp;nbsp;&lt;/P&gt;&lt;P&gt;I looks like the [Current FY] measure works only when it is coming from the OTHER table.&amp;nbsp;&lt;/P&gt;&lt;P&gt;The col "Hours Forecast" is correct when i use the [Current FY] in the measure. But when i try to use the [Current FY] that is coming from the same table, it doesnt work.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How do i fix this issue?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Feb 2023 16:07:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-formula-to-filter-on-Measure-that-provides-text-not-working/m-p/3101955#M109102</guid>
      <dc:creator>guanel1</dc:creator>
      <dc:date>2023-02-27T16:07:04Z</dc:date>
    </item>
    <item>
      <title>Re: SUMX formula to filter on Measure that provides text - not working</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-formula-to-filter-on-Measure-that-provides-text-not-working/m-p/3102001#M109103</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="268450" data-lia-user-login="guanel1" class="lia-mention lia-mention-user"&gt;guanel1&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Please paste the same data as text (not screenshot).&lt;/P&gt;</description>
      <pubDate>Mon, 27 Feb 2023 16:24:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-formula-to-filter-on-Measure-that-provides-text-not-working/m-p/3102001#M109103</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-02-27T16:24:44Z</dc:date>
    </item>
    <item>
      <title>Re: SUMX formula to filter on Measure that provides text - not working</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-formula-to-filter-on-Measure-that-provides-text-not-working/m-p/3102117#M109110</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="268450" data-lia-user-login="guanel1" class="lia-mention lia-mention-user"&gt;guanel1&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Please use&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;Current FY = CALCULATE ( MAX ( 'Table 1'[FY] ), REMOVEFILTERS ( ) )&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 27 Feb 2023 17:15:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-formula-to-filter-on-Measure-that-provides-text-not-working/m-p/3102117#M109110</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-02-27T17:15:36Z</dc:date>
    </item>
    <item>
      <title>Re: SUMX formula to filter on Measure that provides text - not working</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-formula-to-filter-on-Measure-that-provides-text-not-working/m-p/3102118#M109111</link>
      <description>&lt;P&gt;I have found that adding the measure for [Current FY] works when I add it to the measure for table 2 but not for table 1. It seems like the data only works when you pull from a different table, but not when the data is from the same table...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Table 1 = Hours Billed&lt;/P&gt;&lt;TABLE border="0" cellspacing="0" cellpadding="0"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;FY&lt;/TD&gt;&lt;TD&gt;Qtr&lt;/TD&gt;&lt;TD&gt;Project&lt;/TD&gt;&lt;TD&gt;Hours&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;FY2022&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;250&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;FY2022&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;500&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;FY2022&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;FY2022&lt;/TD&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;FY2023&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;FY2023&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;300&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;FY2023&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;345&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;FY2023&lt;/TD&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;525&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;FY2022&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;FY2022&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;150&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;FY2022&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;400&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;FY2022&lt;/TD&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;75&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;FY2023&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;250&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;FY2023&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;FY2023&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;175&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;FY2023&lt;/TD&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;350&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Table 2 = Hours Forecasted&lt;/P&gt;&lt;TABLE border="0" cellspacing="0" cellpadding="0"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;FY&lt;/TD&gt;&lt;TD&gt;Qtr&lt;/TD&gt;&lt;TD&gt;Project&lt;/TD&gt;&lt;TD&gt;Hours&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;FY2022&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;300&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;FY2022&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;300&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;FY2022&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;300&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;FY2022&lt;/TD&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;300&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;FY2023&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;250&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;FY2023&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;500&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;FY2023&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;500&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;FY2023&lt;/TD&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;1250&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;FY2022&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;FY2022&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;150&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;FY2022&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;150&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;FY2022&lt;/TD&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;150&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;FY2023&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;150&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;FY2023&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;FY2023&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;250&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;FY2023&lt;/TD&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;250&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Measures Created:&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Current FY = MAX('Table 1'[FY])&lt;/P&gt;&lt;P&gt;Hours Billed = SUMX(FILTER('Table 1', 'Table 1'[FY] = [Current FY]))&lt;/P&gt;&lt;P&gt;Hours Forecast = SUMX(FILTER('Table 2', 'Table 2'[FY] = [Current FY]))&lt;/P&gt;</description>
      <pubDate>Mon, 27 Feb 2023 17:18:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-formula-to-filter-on-Measure-that-provides-text-not-working/m-p/3102118#M109111</guid>
      <dc:creator>guanel1</dc:creator>
      <dc:date>2023-02-27T17:18:17Z</dc:date>
    </item>
    <item>
      <title>Re: SUMX formula to filter on Measure that provides text - not working</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-formula-to-filter-on-Measure-that-provides-text-not-working/m-p/3102226#M109120</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="268450" data-lia-user-login="guanel1" class="lia-mention lia-mention-user"&gt;guanel1&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Have you tried this?&lt;/P&gt;</description>
      <pubDate>Mon, 27 Feb 2023 18:28:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-formula-to-filter-on-Measure-that-provides-text-not-working/m-p/3102226#M109120</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-02-27T18:28:45Z</dc:date>
    </item>
    <item>
      <title>Re: SUMX formula to filter on Measure that provides text - not working</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-formula-to-filter-on-Measure-that-provides-text-not-working/m-p/3102554#M109150</link>
      <description>&lt;P&gt;Yes, I tested it and it worked. Thank you!&lt;/P&gt;&lt;P&gt;Can you explain the logic behind adding the REMOVEFILTERS to the [Current FY] Measure?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Feb 2023 23:03:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-formula-to-filter-on-Measure-that-provides-text-not-working/m-p/3102554#M109150</guid>
      <dc:creator>guanel1</dc:creator>
      <dc:date>2023-02-27T23:03:50Z</dc:date>
    </item>
    <item>
      <title>Re: SUMX formula to filter on Measure that provides text - not working</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-formula-to-filter-on-Measure-that-provides-text-not-working/m-p/3102887#M109174</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="268450" data-lia-user-login="guanel1" class="lia-mention lia-mention-user"&gt;guanel1&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;It is context transition. In your measure:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Hours Billed = SUMX(FILTER('Table 1', 'Table 1'[FY] = [Current FY]))&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Hours Forecast = SUMX(FILTER('Table 2', 'Table 2'[FY] = [Current FY]))&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;The measure [Current FY] is placed inside FILTER which is an iterator function. That would force context transition converting the Row context into a filter context. The screenshot below shows how both [Current FY] &amp;amp; [Current FY REMOVEFILTERS] measures are being evaluated inside FILTER. I hope once you can spot the difference, everything will become clear and you can can understand why you were getting those numbers.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Feb 2023 05:31:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-formula-to-filter-on-Measure-that-provides-text-not-working/m-p/3102887#M109174</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-02-28T05:31:27Z</dc:date>
    </item>
    <item>
      <title>Re: SUMX formula to filter on Measure that provides text - not working</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-formula-to-filter-on-Measure-that-provides-text-not-working/m-p/3174063#M114518</link>
      <description>&lt;P&gt;Thankyou, i apreciate your help and explanations.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Apr 2023 14:26:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMX-formula-to-filter-on-Measure-that-provides-text-not-working/m-p/3174063#M114518</guid>
      <dc:creator>guanel1</dc:creator>
      <dc:date>2023-04-05T14:26:06Z</dc:date>
    </item>
  </channel>
</rss>

