<?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: Referencing a Specific Cell in Dax in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Referencing-a-Specific-Cell-in-Dax/m-p/2878222#M93071</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="436593" data-lia-user-login="teshalandry" class="lia-mention lia-mention-user"&gt;teshalandry&lt;/a&gt;&amp;nbsp;Try using MAXX(FILTER(...),...) Tends to avoid that error in LOOKUPVALUE.&lt;/P&gt;</description>
    <pubDate>Tue, 01 Nov 2022 20:25:14 GMT</pubDate>
    <dc:creator>Greg_Deckler</dc:creator>
    <dc:date>2022-11-01T20:25:14Z</dc:date>
    <item>
      <title>Referencing a Specific Cell in Dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Referencing-a-Specific-Cell-in-Dax/m-p/2878073#M93058</link>
      <description>&lt;P&gt;I would like to make a measure that corresponds with a slicer. Ideally, I would select a date in the slicer and have a single corresponding cell value be returned from the specified column. Like an xlookup in excel, but complicated by the slicer being apart of the formula. My current formula:&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;SelectedDateHour18temp = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;LOOKUPVALUE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;'IBM_15_day_hourly_forecast'&lt;/SPAN&gt;&lt;SPAN&gt;[hour18temp]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;'IBM_15_day_hourly_forecast'&lt;/SPAN&gt;&lt;SPAN&gt;[Date]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;'Date Slicer'&lt;/SPAN&gt;&lt;SPAN&gt;[Date]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;gives "a single value cannot be determined" error despite my slicer selecting only a single variable. Is there another way I should go about this?&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 01 Nov 2022 19:19:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Referencing-a-Specific-Cell-in-Dax/m-p/2878073#M93058</guid>
      <dc:creator>teshalandry</dc:creator>
      <dc:date>2022-11-01T19:19:20Z</dc:date>
    </item>
    <item>
      <title>Re: Referencing a Specific Cell in Dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Referencing-a-Specific-Cell-in-Dax/m-p/2878222#M93071</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="436593" data-lia-user-login="teshalandry" class="lia-mention lia-mention-user"&gt;teshalandry&lt;/a&gt;&amp;nbsp;Try using MAXX(FILTER(...),...) Tends to avoid that error in LOOKUPVALUE.&lt;/P&gt;</description>
      <pubDate>Tue, 01 Nov 2022 20:25:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Referencing-a-Specific-Cell-in-Dax/m-p/2878222#M93071</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2022-11-01T20:25:14Z</dc:date>
    </item>
    <item>
      <title>Re: Referencing a Specific Cell in Dax</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Referencing-a-Specific-Cell-in-Dax/m-p/2878580#M93081</link>
      <description>&lt;P&gt;Hi ,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="436593" data-lia-user-login="teshalandry" class="lia-mention lia-mention-user"&gt;teshalandry&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The reason for this error is that the 'IBM_15_day_hourly_forecast' [Date] field is not unique, and you can use the following measures to achieve your needs:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Column = var _date = 'Date Slicer'[Date] 
var _t =FILTER('IBM_15_day_hourly_forecast', 'IBM_15_day_hourly_forecast'[Date] =_date)
return
MAXX(_t,[hour18temp])&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Aniya Zhang&lt;/P&gt;
&lt;P&gt;If this post&amp;nbsp;&lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept&lt;/EM&gt;&lt;/STRONG&gt;&lt;EM&gt; it as the solution&lt;/EM&gt;&amp;nbsp;to help the other members find it more quickly&lt;/P&gt;</description>
      <pubDate>Wed, 02 Nov 2022 01:47:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Referencing-a-Specific-Cell-in-Dax/m-p/2878580#M93081</guid>
      <dc:creator>v-yueyunzh-msft</dc:creator>
      <dc:date>2022-11-02T01:47:40Z</dc:date>
    </item>
  </channel>
</rss>

