<?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: Filtering Out Specific String in One Field Within an Average Measure That Uses a Relationship in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-Out-Specific-String-in-One-Field-Within-an-Average/m-p/3419059#M129407</link>
    <description>&lt;P style="margin: 0in; font-family: tahoma; font-size: 11.0pt;"&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="341194" data-lia-user-login="jpdickson12" class="lia-mention lia-mention-user"&gt;jpdickson12&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: tahoma; font-size: 11.0pt;"&gt;Did the above suggestions help with your scenario? if that is the case, you can consider Kudo or Accept the helpful suggestions to help others who faced similar requirements.&lt;/P&gt;
&lt;P style="margin: 0in; font-family: tahoma; font-size: 11.0pt;"&gt;If these also don't help, please share more detailed information and description to help us clarify your scenario to test.&lt;/P&gt;
&lt;P style="margin: 0in; font-family: tahoma; font-size: 11.0pt;"&gt;&lt;A href="http://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490" target="_blank"&gt;How to Get Your Question Answered Quickly&amp;nbsp;&lt;/A&gt;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: tahoma; font-size: 11.0pt;"&gt;Regards,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: tahoma; font-size: 11.0pt;"&gt;Xiaoxin Sheng&lt;/P&gt;</description>
    <pubDate>Thu, 07 Sep 2023 06:34:34 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2023-09-07T06:34:34Z</dc:date>
    <item>
      <title>Filtering Out Specific String in One Field Within an Average Measure That Uses a Relationship</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-Out-Specific-String-in-One-Field-Within-an-Average/m-p/3407756#M128777</link>
      <description>&lt;P&gt;I have a field called 'Loans'[DTI]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to calculate the Average of this field using the relationship 'Date'[Date], 'Loans'[Funded Date] while also filtering out any records that have the 'Loans'[Loan Program Name] field containing the string "ABCD"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is what I currently have and it's returning the error: &lt;STRONG&gt;"The True/False expression does not specify a column. Each True'False expressions used as a table filter expression mest refer to exactly one column."&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;AVG Funded DTI =
CALCULATE (
    FILTER (
        'Loans',
        NOT ( CONTAINSSTRING ( 'Loans'[Loan Program Name], "DSCR" ) )
    ),
    AVERAGE ( Loans[DTI] ),
    USERELATIONSHIP ( 'Date'[Date], Loans[Funded Date] )
) / 100&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm just not familiar enough with DAX to know where to add the filter. any Help would be greatly appreciated!&lt;/P&gt;</description>
      <pubDate>Thu, 31 Aug 2023 01:00:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-Out-Specific-String-in-One-Field-Within-an-Average/m-p/3407756#M128777</guid>
      <dc:creator>jpdickson12</dc:creator>
      <dc:date>2023-08-31T01:00:13Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering Out Specific String in One Field Within an Average Measure That Uses a Relationship</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-Out-Specific-String-in-One-Field-Within-an-Average/m-p/3408097#M128788</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="341194" data-lia-user-login="jpdickson12" class="lia-mention lia-mention-user"&gt;jpdickson12&lt;/a&gt;&amp;nbsp;, syntax:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;AVG Funded DTI =
CALCULATE (
    AVERAGE ( Loans[DTI] ),
    FILTER (
        'Loans',
        NOT ( CONTAINSSTRING ( 'Loans'[Loan Program Name], "DSCR" ) )
    ),
    USERELATIONSHIP ( 'Date'[Date], Loans[Funded Date] )
) / 100&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 31 Aug 2023 07:06:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-Out-Specific-String-in-One-Field-Within-an-Average/m-p/3408097#M128788</guid>
      <dc:creator>ERD</dc:creator>
      <dc:date>2023-08-31T07:06:27Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering Out Specific String in One Field Within an Average Measure That Uses a Relationship</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-Out-Specific-String-in-One-Field-Within-an-Average/m-p/3419059#M129407</link>
      <description>&lt;P style="margin: 0in; font-family: tahoma; font-size: 11.0pt;"&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="341194" data-lia-user-login="jpdickson12" class="lia-mention lia-mention-user"&gt;jpdickson12&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: tahoma; font-size: 11.0pt;"&gt;Did the above suggestions help with your scenario? if that is the case, you can consider Kudo or Accept the helpful suggestions to help others who faced similar requirements.&lt;/P&gt;
&lt;P style="margin: 0in; font-family: tahoma; font-size: 11.0pt;"&gt;If these also don't help, please share more detailed information and description to help us clarify your scenario to test.&lt;/P&gt;
&lt;P style="margin: 0in; font-family: tahoma; font-size: 11.0pt;"&gt;&lt;A href="http://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490" target="_blank"&gt;How to Get Your Question Answered Quickly&amp;nbsp;&lt;/A&gt;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: tahoma; font-size: 11.0pt;"&gt;Regards,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: tahoma; font-size: 11.0pt;"&gt;Xiaoxin Sheng&lt;/P&gt;</description>
      <pubDate>Thu, 07 Sep 2023 06:34:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-Out-Specific-String-in-One-Field-Within-an-Average/m-p/3419059#M129407</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-09-07T06:34:34Z</dc:date>
    </item>
  </channel>
</rss>

