<?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 LOOKVALUE NEAREST : Nearest value based on other columns values in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/LOOKVALUE-NEAREST-Nearest-value-based-on-other-columns-values/m-p/3180899#M114992</link>
    <description>&lt;P&gt;Hi,&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i nees your help.&amp;nbsp; I have 2 tables,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the fist is the tableA: kardex of amount of a credit line (profiles of credit card limits):&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;the second its tableB: de average purschase by customer.&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;i need the nearest value beetween purchases cust. &amp;amp; profiles, in order to have a credit limit by cust (nearest up).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thank u.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 11 Apr 2023 03:40:54 GMT</pubDate>
    <dc:creator>CESARPULIDOGDL</dc:creator>
    <dc:date>2023-04-11T03:40:54Z</dc:date>
    <item>
      <title>LOOKVALUE NEAREST : Nearest value based on other columns values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/LOOKVALUE-NEAREST-Nearest-value-based-on-other-columns-values/m-p/3180899#M114992</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i nees your help.&amp;nbsp; I have 2 tables,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the fist is the tableA: kardex of amount of a credit line (profiles of credit card limits):&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;the second its tableB: de average purschase by customer.&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;i need the nearest value beetween purchases cust. &amp;amp; profiles, in order to have a credit limit by cust (nearest up).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thank u.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Apr 2023 03:40:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/LOOKVALUE-NEAREST-Nearest-value-based-on-other-columns-values/m-p/3180899#M114992</guid>
      <dc:creator>CESARPULIDOGDL</dc:creator>
      <dc:date>2023-04-11T03:40:54Z</dc:date>
    </item>
    <item>
      <title>Re: LOOKVALUE NEAREST : Nearest value based on other columns values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/LOOKVALUE-NEAREST-Nearest-value-based-on-other-columns-values/m-p/3181487#M115034</link>
      <description>&lt;P&gt;You could create a column in TableB like&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Credit Limit =
VAR AvgPurchase = 'TableB'[Average purchase]
VAR Result =
    CALCULATE (
        MIN ( 'TableA'[Credit line amount] ),
        'TableA'[Credit line amount] &amp;gt;= AvgPurchase
    )
RETURN
    Result
&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 11 Apr 2023 09:49:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/LOOKVALUE-NEAREST-Nearest-value-based-on-other-columns-values/m-p/3181487#M115034</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2023-04-11T09:49:19Z</dc:date>
    </item>
    <item>
      <title>Re: LOOKVALUE NEAREST : Nearest value based on other columns values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/LOOKVALUE-NEAREST-Nearest-value-based-on-other-columns-values/m-p/3182638#M115096</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="240987" data-lia-user-login="johnt75" class="lia-mention lia-mention-user"&gt;johnt75&lt;/a&gt;&amp;nbsp; Thank you so much. It's work's!!&amp;nbsp;&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":beaming_face_with_smiling_eyes:"&gt;😁&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Apr 2023 20:26:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/LOOKVALUE-NEAREST-Nearest-value-based-on-other-columns-values/m-p/3182638#M115096</guid>
      <dc:creator>CESARPULIDOGDL</dc:creator>
      <dc:date>2023-04-11T20:26:35Z</dc:date>
    </item>
  </channel>
</rss>

