<?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: True/False expression does not specify a column in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/True-False-expression-does-not-specify-a-column/m-p/3730092#M145344</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="449986" data-lia-user-login="Sri57" class="lia-mention lia-mention-user"&gt;Sri57&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;According to your description, here are my steps you can follow as a solution.&lt;/P&gt;
&lt;P&gt;(1) We can create a measure.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure 2 =
VAR A =
    SUMMARIZE (
        'Test',
        'Test'[Delivery],
        "val",
            CALCULATE (
                MIN ( 'LT'[CRAD to Delivery Date] ),
                FILTER (
                    ALLEXCEPT ( 'Test', 'Test'[Delivery] ),
                    'Test'[Item Category] &amp;lt;&amp;gt; "TAPA"
                        &amp;amp;&amp;amp; [BOL] = 1
                )
            )
    )
RETURN
    MINX ( A, [val] )
&lt;/LI-CODE&gt;
&lt;P&gt;(2) Then the result is as follows.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the above one can't help you get the desired result, please provide some&amp;nbsp;&lt;STRONG&gt;sample data&lt;/STRONG&gt;&amp;nbsp;in your tables (&lt;STRONG&gt;exclude&amp;nbsp;sensitive&amp;nbsp;data&lt;/STRONG&gt;) with&amp;nbsp;&lt;STRONG&gt;Text&lt;/STRONG&gt;&amp;nbsp;format and your&amp;nbsp;&lt;STRONG&gt;expected result&lt;/STRONG&gt;&amp;nbsp;with backend logic and special examples.&amp;nbsp;&lt;STRONG&gt;It is better&lt;/STRONG&gt;&amp;nbsp;if you can share a&amp;nbsp;&lt;STRONG&gt;simplified&lt;/STRONG&gt;&amp;nbsp;pbix file.&amp;nbsp;Thank you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Neeko Tang&lt;/P&gt;
&lt;P&gt;If this post  &lt;STRONG&gt;&lt;EM&gt;helps&lt;/EM&gt;&lt;/STRONG&gt;, then please consider &lt;STRONG&gt;&lt;EM&gt;Accept it as the solution &lt;/EM&gt;&lt;/STRONG&gt; to help the other members find it more quickly.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 28 Feb 2024 09:09:18 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2024-02-28T09:09:18Z</dc:date>
    <item>
      <title>True/False expression does not specify a column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/True-False-expression-does-not-specify-a-column/m-p/3727185#M145192</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Im getting the error like "The True/False expression does not specify a column. Each True/False expressions used as a table filter expression must refer to exactly one column." when trying to write a dax expression&lt;/SPAN&gt;&lt;BR /&gt;Var A = SUMMARIZE(Test','Test'[Delivery],"val",&lt;BR /&gt;CALCULATE(MIN([LT (CRAD to Delivery Date)]),ALLEXCEPT('Test','Test'[Delivery]),'Test'[Item Category]&amp;lt;&amp;gt;"TAPA",'Test','Test'[BOL]=1))&lt;BR /&gt;RETURN MINX(A,[val])&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here [BOL] is a measure and remaining are columns in Test table.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;TIA&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Feb 2024 10:31:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/True-False-expression-does-not-specify-a-column/m-p/3727185#M145192</guid>
      <dc:creator>Sri57</dc:creator>
      <dc:date>2024-02-27T10:31:19Z</dc:date>
    </item>
    <item>
      <title>Re: True/False expression does not specify a column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/True-False-expression-does-not-specify-a-column/m-p/3727282#M145198</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;As the error states when using a table filter expression you need to refer to columns. Since [Bol] is a measure this error happens. Try adding the logic in Bol to a column e.g. with ADDCOLUMNS in the measure.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!&lt;BR /&gt;&lt;BR /&gt;My LinkedIn: &lt;A href="https://www.linkedin.com/in/n%C3%A4ttiahov-00001/" target="_blank"&gt;https://www.linkedin.com/in/n%C3%A4ttiahov-00001/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Feb 2024 11:05:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/True-False-expression-does-not-specify-a-column/m-p/3727282#M145198</guid>
      <dc:creator>ValtteriN</dc:creator>
      <dc:date>2024-02-27T11:05:01Z</dc:date>
    </item>
    <item>
      <title>Re: True/False expression does not specify a column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/True-False-expression-does-not-specify-a-column/m-p/3730092#M145344</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="449986" data-lia-user-login="Sri57" class="lia-mention lia-mention-user"&gt;Sri57&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;According to your description, here are my steps you can follow as a solution.&lt;/P&gt;
&lt;P&gt;(1) We can create a measure.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure 2 =
VAR A =
    SUMMARIZE (
        'Test',
        'Test'[Delivery],
        "val",
            CALCULATE (
                MIN ( 'LT'[CRAD to Delivery Date] ),
                FILTER (
                    ALLEXCEPT ( 'Test', 'Test'[Delivery] ),
                    'Test'[Item Category] &amp;lt;&amp;gt; "TAPA"
                        &amp;amp;&amp;amp; [BOL] = 1
                )
            )
    )
RETURN
    MINX ( A, [val] )
&lt;/LI-CODE&gt;
&lt;P&gt;(2) Then the result is as follows.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the above one can't help you get the desired result, please provide some&amp;nbsp;&lt;STRONG&gt;sample data&lt;/STRONG&gt;&amp;nbsp;in your tables (&lt;STRONG&gt;exclude&amp;nbsp;sensitive&amp;nbsp;data&lt;/STRONG&gt;) with&amp;nbsp;&lt;STRONG&gt;Text&lt;/STRONG&gt;&amp;nbsp;format and your&amp;nbsp;&lt;STRONG&gt;expected result&lt;/STRONG&gt;&amp;nbsp;with backend logic and special examples.&amp;nbsp;&lt;STRONG&gt;It is better&lt;/STRONG&gt;&amp;nbsp;if you can share a&amp;nbsp;&lt;STRONG&gt;simplified&lt;/STRONG&gt;&amp;nbsp;pbix file.&amp;nbsp;Thank you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Neeko Tang&lt;/P&gt;
&lt;P&gt;If this post  &lt;STRONG&gt;&lt;EM&gt;helps&lt;/EM&gt;&lt;/STRONG&gt;, then please consider &lt;STRONG&gt;&lt;EM&gt;Accept it as the solution &lt;/EM&gt;&lt;/STRONG&gt; to help the other members find it more quickly.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Feb 2024 09:09:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/True-False-expression-does-not-specify-a-column/m-p/3730092#M145344</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-02-28T09:09:18Z</dc:date>
    </item>
  </channel>
</rss>

