<?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: Skipping blanks in valuelookup in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Skipping-blanks-in-valuelookup/m-p/2436644#M65060</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="368094" data-lia-user-login="MSW" class="lia-mention lia-mention-user"&gt;MSW&lt;/a&gt;&amp;nbsp;You could use CONCATENATEX instead of MAXXX to pull back multiple values. I'm having some issues trying to visualize your setup. You might try adding an index maybe? I'm not understanding what ties the second 123 in the first table to the second 123 in the second table. You'd have to have everything in the same order and use an index.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 04 Apr 2022 21:37:44 GMT</pubDate>
    <dc:creator>Greg_Deckler</dc:creator>
    <dc:date>2022-04-04T21:37:44Z</dc:date>
    <item>
      <title>Skipping blanks in valuelookup</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Skipping-blanks-in-valuelookup/m-p/2433938#M64921</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is it possible to use valuelookup and skip zeros/blanks in order to return only the whole number associated to an ID. I have a column that only some of the unique IDs have a value per row. The dataset has many duplicated IDs which is why I'm getting the 'multiple values were supplied where a single value was expected'. Is it possible to use NoBlankrows or another type filter with valuelookup to bypass the blanks in the column?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thank you for the help and clarification.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Apr 2022 00:03:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Skipping-blanks-in-valuelookup/m-p/2433938#M64921</guid>
      <dc:creator>MSW</dc:creator>
      <dc:date>2022-04-04T00:03:06Z</dc:date>
    </item>
    <item>
      <title>Re: Skipping blanks in valuelookup</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Skipping-blanks-in-valuelookup/m-p/2433981#M64922</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="368094" data-lia-user-login="MSW" class="lia-mention lia-mention-user"&gt;MSW&lt;/a&gt;&amp;nbsp;Assuming you are talking about LOOKUPVALUE function, use MAXX(FILTER(...),...) instead. More reliable and allows you to explicitly control the filtering.&lt;/P&gt;</description>
      <pubDate>Mon, 04 Apr 2022 01:11:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Skipping-blanks-in-valuelookup/m-p/2433981#M64922</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2022-04-04T01:11:50Z</dc:date>
    </item>
    <item>
      <title>Re: Skipping blanks in valuelookup</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Skipping-blanks-in-valuelookup/m-p/2436370#M65028</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="313" data-lia-user-login="Greg_Deckler" class="lia-mention lia-mention-user"&gt;Greg_Deckler&lt;/a&gt;&amp;nbsp;Thanks that works except that if I do not want the max value and I want the value associated to each row by ID.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;IE:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Table 1:&amp;nbsp;&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;Customer ID&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;123&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;345&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;123&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;567&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;Table 2:&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;Customer ID&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Merged&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;123&lt;/TD&gt;&lt;TD&gt;123 789&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;345&lt;/TD&gt;&lt;TD&gt;345 134&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;123&lt;/TD&gt;&lt;TD&gt;123 876&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;567&lt;/TD&gt;&lt;TD&gt;567 214&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to return the merged values to table one but the only way I have to connect the two is by customerID. Is it possible to look up the value and return it based on the row? The other option I have that does not appear to be working is in another table I have the merged column that is already associated to each customer ID.&amp;nbsp; Greatly appreciate the help&lt;/P&gt;</description>
      <pubDate>Mon, 04 Apr 2022 17:26:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Skipping-blanks-in-valuelookup/m-p/2436370#M65028</guid>
      <dc:creator>MSW</dc:creator>
      <dc:date>2022-04-04T17:26:45Z</dc:date>
    </item>
    <item>
      <title>Re: Skipping blanks in valuelookup</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Skipping-blanks-in-valuelookup/m-p/2436644#M65060</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="368094" data-lia-user-login="MSW" class="lia-mention lia-mention-user"&gt;MSW&lt;/a&gt;&amp;nbsp;You could use CONCATENATEX instead of MAXXX to pull back multiple values. I'm having some issues trying to visualize your setup. You might try adding an index maybe? I'm not understanding what ties the second 123 in the first table to the second 123 in the second table. You'd have to have everything in the same order and use an index.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Apr 2022 21:37:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Skipping-blanks-in-valuelookup/m-p/2436644#M65060</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2022-04-04T21:37:44Z</dc:date>
    </item>
  </channel>
</rss>

