<?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: How Can I use DAX to achieve my desired goal below ( Pulling a list of values first and then min.) in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-Can-I-use-DAX-to-achieve-my-desired-goal-below-Pulling-a/m-p/3396746#M128144</link>
    <description>&lt;P&gt;Unfortunately does not generate any output at all&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do I need the ISINSCOPE function ?&lt;/P&gt;&lt;P&gt;&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;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 24 Aug 2023 10:34:13 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2023-08-24T10:34:13Z</dc:date>
    <item>
      <title>How Can I use DAX to achieve my desired goal below ( Pulling a list of values first and then min.)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-Can-I-use-DAX-to-achieve-my-desired-goal-below-Pulling-a/m-p/3396384#M128114</link>
      <description>&lt;P&gt;Hi Guys,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Say I have 2 tables&lt;/P&gt;&lt;P&gt;Table:-1 ( From Here I need to extract the value of Height = 500m)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Tower ID&lt;/TD&gt;&lt;TD&gt;Bottom Dia&amp;nbsp;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;Top Dia&lt;/TD&gt;&lt;TD&gt;Height&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;123&lt;/TD&gt;&lt;TD&gt;Cell 2&lt;/TD&gt;&lt;TD&gt;Cell 1&lt;/TD&gt;&lt;TD&gt;500&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;Table:-2 ( Now keeping 500 from table I need the minimum of the SRF values in table 2 corresponding to all heights less than 500 as min ( 0.25, 0.1,0.3,0.2) = 0.1 so on and so forth , so eventually for one tower ID I will have a single min SRF value.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Tower ID&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;Mass&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;height&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;SRF&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;123&lt;/TD&gt;&lt;TD&gt;Cell 2&lt;/TD&gt;&lt;TD&gt;650&lt;/TD&gt;&lt;TD&gt;0.3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;123&lt;/TD&gt;&lt;TD&gt;Cell 2&lt;/TD&gt;&lt;TD&gt;500&lt;/TD&gt;&lt;TD&gt;0.25&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;123&lt;/TD&gt;&lt;TD&gt;Cell 2&lt;/TD&gt;&lt;TD&gt;450&lt;/TD&gt;&lt;TD&gt;0.1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;123&lt;/TD&gt;&lt;TD&gt;Cell 2&lt;/TD&gt;&lt;TD&gt;200&lt;/TD&gt;&lt;TD&gt;0.3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;123&lt;/TD&gt;&lt;TD&gt;Cell 2&lt;/TD&gt;&lt;TD&gt;50&lt;/TD&gt;&lt;TD&gt;0.2&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;How can I achieve this using DAX or otherwise ?&lt;/P&gt;&lt;P&gt;Sorry I am really new and not sure how to even get started on this&lt;/P&gt;</description>
      <pubDate>Thu, 24 Aug 2023 07:23:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-Can-I-use-DAX-to-achieve-my-desired-goal-below-Pulling-a/m-p/3396384#M128114</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-08-24T07:23:16Z</dc:date>
    </item>
    <item>
      <title>Re: How Can I use DAX to achieve my desired goal below ( Pulling a list of values first and then min.)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-Can-I-use-DAX-to-achieve-my-desired-goal-below-Pulling-a/m-p/3396625#M128133</link>
      <description>&lt;P&gt;Make a one-to-many relationship from table 1 to table 2 and then you can try&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Min SRF =
IF (
    ISINSCOPE ( 'Table1'[Tower ID] ),
    VAR CurrentHeight =
        SELECTEDVALUE ( 'Table1'[Height] )
    VAR Result =
        CALCULATE (
            MIN ( 'Table2'[SRF] ),
            KEEPFILTERS ( 'Table2'[Height] &amp;lt;= CurrentHeight )
        )
    RETURN
        Result
)
&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 24 Aug 2023 09:16:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-Can-I-use-DAX-to-achieve-my-desired-goal-below-Pulling-a/m-p/3396625#M128133</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2023-08-24T09:16:22Z</dc:date>
    </item>
    <item>
      <title>Re: How Can I use DAX to achieve my desired goal below ( Pulling a list of values first and then min.)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-Can-I-use-DAX-to-achieve-my-desired-goal-below-Pulling-a/m-p/3396746#M128144</link>
      <description>&lt;P&gt;Unfortunately does not generate any output at all&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do I need the ISINSCOPE function ?&lt;/P&gt;&lt;P&gt;&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;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Aug 2023 10:34:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-Can-I-use-DAX-to-achieve-my-desired-goal-below-Pulling-a/m-p/3396746#M128144</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-08-24T10:34:13Z</dc:date>
    </item>
    <item>
      <title>Re: How Can I use DAX to achieve my desired goal below ( Pulling a list of values first and then min.)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-Can-I-use-DAX-to-achieve-my-desired-goal-below-Pulling-a/m-p/3396761#M128147</link>
      <description>&lt;P&gt;The original code was intended for use as a measure. If you want to do it in a calculated column the below should work I think&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Min SRF =
VAR CurrentHeight = 'Table1'[Height]
VAR Result =
    CALCULATE (
        MIN ( 'Table2'[SRF] ),
        KEEPFILTERS ( 'Table2'[Height] &amp;lt;= CurrentHeight )
    )
RETURN
    Result
&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 24 Aug 2023 10:32:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-Can-I-use-DAX-to-achieve-my-desired-goal-below-Pulling-a/m-p/3396761#M128147</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2023-08-24T10:32:36Z</dc:date>
    </item>
    <item>
      <title>Re: How Can I use DAX to achieve my desired goal below ( Pulling a list of values first and then min.)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-Can-I-use-DAX-to-achieve-my-desired-goal-below-Pulling-a/m-p/3398296#M128241</link>
      <description>&lt;P&gt;can somebody please help me here to return a table instead of the min value ?&lt;/P&gt;</description>
      <pubDate>Fri, 25 Aug 2023 04:36:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-Can-I-use-DAX-to-achieve-my-desired-goal-below-Pulling-a/m-p/3398296#M128241</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-08-25T04:36:07Z</dc:date>
    </item>
    <item>
      <title>Re: How Can I use DAX to achieve my desired goal below ( Pulling a list of values first and then min.)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-Can-I-use-DAX-to-achieve-my-desired-goal-below-Pulling-a/m-p/3398720#M128270</link>
      <description>&lt;P&gt;What are you trying to return exactly ?&lt;/P&gt;</description>
      <pubDate>Fri, 25 Aug 2023 08:44:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-Can-I-use-DAX-to-achieve-my-desired-goal-below-Pulling-a/m-p/3398720#M128270</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2023-08-25T08:44:08Z</dc:date>
    </item>
    <item>
      <title>Re: How Can I use DAX to achieve my desired goal below ( Pulling a list of values first and then min.)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-Can-I-use-DAX-to-achieve-my-desired-goal-below-Pulling-a/m-p/3398749#M128274</link>
      <description>&lt;P&gt;Hi ,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have created a new thread here below:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Extension-of-a-previous-DAX-Query/m-p/3398648#M128267" target="_blank"&gt;https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Extension-of-a-previous-DAX-Query/m-p/3398648#M128267&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to return a table..&lt;/P&gt;</description>
      <pubDate>Fri, 25 Aug 2023 09:02:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-Can-I-use-DAX-to-achieve-my-desired-goal-below-Pulling-a/m-p/3398749#M128274</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-08-25T09:02:38Z</dc:date>
    </item>
  </channel>
</rss>

