<?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: function Values doesn t return Table of values but error in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/function-Values-doesn-t-return-Table-of-values-but-error/m-p/3741050#M145893</link>
    <description>&lt;P&gt;Actually, this is working only when you are filtering from fact table (In my case it is Events) I need it from dimension Users, I am aware of this option that you mentioned &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 04 Mar 2024 21:48:31 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2024-03-04T21:48:31Z</dc:date>
    <item>
      <title>function Values doesn t return Table of values but error</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/function-Values-doesn-t-return-Table-of-values-but-error/m-p/3740516#M145850</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to use VALUES function and study from &lt;A href="https://dax.guide/values/" target="_blank"&gt;https://dax.guide/values/&lt;/A&gt; that input is table/column and output table (one or more columns)&lt;BR /&gt;I tried to od it on most simplest case but it failed, can sombebody told me why ? everything seems OK based on DAX guide, what I missed ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Current Data Model&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My DAX formula&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Measure&lt;/SPAN&gt;&lt;SPAN&gt; =&lt;/SPAN&gt; &lt;SPAN&gt;VALUES&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Locations&lt;/SPAN&gt;&lt;SPAN&gt;[Location]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;When I tried to test it on table&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Measure&lt;/SPAN&gt;&lt;SPAN&gt; =&lt;/SPAN&gt; &lt;SPAN&gt;VALUES&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Locations&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I got another error "The expression refers to multiple columns. Multiple columns cannot be converted to a scalar value."&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I am totally confused, because there is only one condition that input parameter must be table or column,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;any ideas what I missed ? (Don t think so that DAX.guide is wrong in description)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;thanks in advance!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2024 15:51:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/function-Values-doesn-t-return-Table-of-values-but-error/m-p/3740516#M145850</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-03-04T15:51:24Z</dc:date>
    </item>
    <item>
      <title>Re: function Values doesn t return Table of values but error</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/function-Values-doesn-t-return-Table-of-values-but-error/m-p/3740741#M145863</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;With a measure you can return only a unique value&lt;/P&gt;&lt;P&gt;Values will not work because it return a list of unique values of the column.&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2024 18:06:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/function-Values-doesn-t-return-Table-of-values-but-error/m-p/3740741#M145863</guid>
      <dc:creator>JamesFR06</dc:creator>
      <dc:date>2024-03-04T18:06:59Z</dc:date>
    </item>
    <item>
      <title>Re: function Values doesn t return Table of values but error</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/function-Values-doesn-t-return-Table-of-values-but-error/m-p/3740794#M145866</link>
      <description>&lt;P&gt;Hello &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="671299" data-lia-user-login="JamesFR06" class="lia-mention lia-mention-user"&gt;JamesFR06&lt;/a&gt; ,&lt;/P&gt;&lt;P&gt;thanks for input !&lt;BR /&gt;but in documentation is written that it returns table/tabular and not scalar, therefore I am confused&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I also tried to use it in CALCULATE(VALUES(Locations))&amp;nbsp; and also it is not working, so I am confused again &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;issue is definitively somewhere in my code&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2024 18:31:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/function-Values-doesn-t-return-Table-of-values-but-error/m-p/3740794#M145866</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-03-04T18:31:15Z</dc:date>
    </item>
    <item>
      <title>Re: function Values doesn t return Table of values but error</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/function-Values-doesn-t-return-Table-of-values-but-error/m-p/3740799#M145867</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="671299" data-lia-user-login="JamesFR06" class="lia-mention lia-mention-user"&gt;JamesFR06&lt;/a&gt;I also tried CALCULATETABLE(VALUES(Locations)) and doesn t any output&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2024 18:34:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/function-Values-doesn-t-return-Table-of-values-but-error/m-p/3740799#M145867</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-03-04T18:34:34Z</dc:date>
    </item>
    <item>
      <title>Re: function Values doesn t return Table of values but error</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/function-Values-doesn-t-return-Table-of-values-but-error/m-p/3740813#M145869</link>
      <description>&lt;P&gt;&amp;nbsp;What calculation do you want to do ?&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2024 18:45:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/function-Values-doesn-t-return-Table-of-values-but-error/m-p/3740813#M145869</guid>
      <dc:creator>JamesFR06</dc:creator>
      <dc:date>2024-03-04T18:45:56Z</dc:date>
    </item>
    <item>
      <title>Re: function Values doesn t return Table of values but error</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/function-Values-doesn-t-return-Table-of-values-but-error/m-p/3740837#M145873</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="671299" data-lia-user-login="JamesFR06" class="lia-mention lia-mention-user"&gt;JamesFR06&lt;/a&gt; ,&lt;BR /&gt;my whole scenario is setup 2 slicers which each one will affect second one, so if I select one speicific user in slicer, then second slicer (with location values) will be filtered based on previous option.&lt;/P&gt;&lt;P&gt;So my logic is following&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Measure&lt;/SPAN&gt;&lt;SPAN&gt; =&lt;/SPAN&gt; &lt;SPAN&gt;CALCULATETABLE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;VALUES&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Locations&lt;/SPAN&gt;&lt;SPAN&gt;), &lt;/SPAN&gt;&lt;SPAN&gt;FILTER&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Users&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;Users&lt;/SPAN&gt;&lt;SPAN&gt;[Name]&lt;/SPAN&gt;&lt;SPAN&gt; ))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;issues is that I cannot create table that will be filtered by second parameter&lt;BR /&gt;then I tried to bugfix it one-by-one and see first issue in VALUES(LOCATIONS) then I am not able to display as a single measure, thefore I check documentation and see that result is tabular but error claims that it must be scalar, I dont think so that it is error in PBI and was not founded till now&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;affectedSlicer = Calculatetable (Cal)&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2024 18:55:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/function-Values-doesn-t-return-Table-of-values-but-error/m-p/3740837#M145873</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-03-04T18:55:53Z</dc:date>
    </item>
    <item>
      <title>Re: function Values doesn t return Table of values but error</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/function-Values-doesn-t-return-Table-of-values-but-error/m-p/3740936#M145880</link>
      <description>&lt;P&gt;It's automatic, you just have to put the column name in 1 slicer and if relationshios are ok it should be ok&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2024 20:03:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/function-Values-doesn-t-return-Table-of-values-but-error/m-p/3740936#M145880</guid>
      <dc:creator>JamesFR06</dc:creator>
      <dc:date>2024-03-04T20:03:45Z</dc:date>
    </item>
    <item>
      <title>Re: function Values doesn t return Table of values but error</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/function-Values-doesn-t-return-Table-of-values-but-error/m-p/3740988#M145884</link>
      <description>&lt;P&gt;unfortunatelly the relation are issue &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt; these are fix , therefore I asked here &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;BR /&gt;and still dont understand what VALUES return if not tabular &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2024 20:44:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/function-Values-doesn-t-return-Table-of-values-but-error/m-p/3740988#M145884</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-03-04T20:44:33Z</dc:date>
    </item>
    <item>
      <title>Re: function Values doesn t return Table of values but error</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/function-Values-doesn-t-return-Table-of-values-but-error/m-p/3740995#M145885</link>
      <description>&lt;P&gt;Just give me an example of your tables, it would be easier for help&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2024 20:55:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/function-Values-doesn-t-return-Table-of-values-but-error/m-p/3740995#M145885</guid>
      <dc:creator>JamesFR06</dc:creator>
      <dc:date>2024-03-04T20:55:44Z</dc:date>
    </item>
    <item>
      <title>Re: function Values doesn t return Table of values but error</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/function-Values-doesn-t-return-Table-of-values-but-error/m-p/3741003#M145886</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="671299" data-lia-user-login="JamesFR06" class="lia-mention lia-mention-user"&gt;JamesFR06&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here are pics,&lt;BR /&gt;unfortunatelly this forum doesn t support PBIX files &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt; it could be much easier&lt;BR /&gt;Data Model is here (unfortunatelly if both direction filter will be allowed it will works, but for this usecase I cannot swith it)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;current status when I select random USER I see all location (instead of only them that are related to selected user)&lt;/P&gt;&lt;P&gt;see pict 1&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;BR /&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;so goal is to avoid these "restricted combinations"&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2024 21:09:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/function-Values-doesn-t-return-Table-of-values-but-error/m-p/3741003#M145886</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-03-04T21:09:57Z</dc:date>
    </item>
    <item>
      <title>Re: function Values doesn t return Table of values but error</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/function-Values-doesn-t-return-Table-of-values-but-error/m-p/3741025#M145887</link>
      <description>&lt;P&gt;IN your exemple, Alice had 3 Locations, LA, London and Tokyo not NY. It is normal that it gave you blank result.&lt;/P&gt;&lt;P&gt;So if i understood correctly you want the filter of location to be cleaned with only locations available for hte current name ?&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2024 21:32:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/function-Values-doesn-t-return-Table-of-values-but-error/m-p/3741025#M145887</guid>
      <dc:creator>JamesFR06</dc:creator>
      <dc:date>2024-03-04T21:32:01Z</dc:date>
    </item>
    <item>
      <title>Re: function Values doesn t return Table of values but error</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/function-Values-doesn-t-return-Table-of-values-but-error/m-p/3741033#M145889</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="671299" data-lia-user-login="JamesFR06" class="lia-mention lia-mention-user"&gt;JamesFR06&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;yes exactly, when you select user then specific location should be selected for him,&lt;BR /&gt;I think that it can be&amp;nbsp; achieved via userelationships but I failed&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2024 21:35:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/function-Values-doesn-t-return-Table-of-values-but-error/m-p/3741033#M145889</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-03-04T21:35:05Z</dc:date>
    </item>
    <item>
      <title>Re: function Values doesn t return Table of values but error</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/function-Values-doesn-t-return-Table-of-values-but-error/m-p/3741042#M145890</link>
      <description>&lt;P&gt;Pertr_&lt;/P&gt;&lt;P&gt;ok so I made an example :&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Go to "Modelisation" (Sorry I ve got pwbi in french &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; ) and after&amp;nbsp; on the top left relation&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;You click on the name slicer&lt;/P&gt;&lt;P&gt;this icone will appear on location slicer. You click on it and it's done&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2024 21:42:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/function-Values-doesn-t-return-Table-of-values-but-error/m-p/3741042#M145890</guid>
      <dc:creator>JamesFR06</dc:creator>
      <dc:date>2024-03-04T21:42:47Z</dc:date>
    </item>
    <item>
      <title>Re: function Values doesn t return Table of values but error</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/function-Values-doesn-t-return-Table-of-values-but-error/m-p/3741050#M145893</link>
      <description>&lt;P&gt;Actually, this is working only when you are filtering from fact table (In my case it is Events) I need it from dimension Users, I am aware of this option that you mentioned &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2024 21:48:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/function-Values-doesn-t-return-Table-of-values-but-error/m-p/3741050#M145893</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-03-04T21:48:31Z</dc:date>
    </item>
    <item>
      <title>Re: function Values doesn t return Table of values but error</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/function-Values-doesn-t-return-Table-of-values-but-error/m-p/3741089#M145895</link>
      <description>&lt;P&gt;ok this should work&amp;nbsp;&lt;/P&gt;&lt;P&gt;1 ) Measure&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;filter location = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;var&lt;/SPAN&gt;&lt;SPAN&gt; base=&lt;/SPAN&gt;&lt;SPAN&gt;CALCULATETABLE&lt;/SPAN&gt;&lt;SPAN&gt;(events,&lt;/SPAN&gt;&lt;SPAN&gt;ALLSELECTED&lt;/SPAN&gt;&lt;SPAN&gt;(User[Names]))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;var&lt;/SPAN&gt;&lt;SPAN&gt; loc=&lt;/SPAN&gt;&lt;SPAN&gt;SELECTEDVALUE&lt;/SPAN&gt;&lt;SPAN&gt;(Location[Location])&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;var&lt;/SPAN&gt;&lt;SPAN&gt; idloc=&lt;/SPAN&gt;&lt;SPAN&gt;LOOKUPVALUE&lt;/SPAN&gt;&lt;SPAN&gt;(Location[IDLocation],Location[Location],loc)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;var&lt;/SPAN&gt;&lt;SPAN&gt; test=&lt;/SPAN&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;calculate&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;COUNTROWS&lt;/SPAN&gt;&lt;SPAN&gt;(base),Events[IDLocation]=idloc)&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt;0&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;1&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;return&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;test&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;2 add this measure on the filter panel of the final filter and choose is"1"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;It works for me&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 04 Mar 2024 22:17:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/function-Values-doesn-t-return-Table-of-values-but-error/m-p/3741089#M145895</guid>
      <dc:creator>JamesFR06</dc:creator>
      <dc:date>2024-03-04T22:17:22Z</dc:date>
    </item>
  </channel>
</rss>

