<?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: Expression.Error: We cannot apply field access to the type List. Details:     Value=[List]     Key=S in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Expression-Error-We-cannot-apply-field-access-to-the-type-List/m-p/2206842#M51977</link>
    <description>&lt;P&gt;Hi&amp;nbsp; Anonymous&lt;/LI-USER&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;You can also consider using Dax to solve this problem&lt;/P&gt;
&lt;P&gt;Here are the steps you can follow：&lt;/P&gt;
&lt;P&gt;1. In Power query, Add Column –&lt;SPAN&gt; Index Column &lt;/SPAN&gt;–&lt;SPAN&gt; From 1.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;2. Create calculated column.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;New_Date =
var _1=CALCULATE(SUM('Table'[date]),FILTER(ALL('Table'),'Table'[Index]=EARLIER('Table'[Index])+1))
return
IF(
    ISBLANK(_1),BLANK(),_1)&lt;/LI-CODE&gt;
&lt;P&gt;3. Result:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Liu Yang&lt;/P&gt;
&lt;P&gt;If this post &lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider &lt;EM&gt;Accept it as the solution&lt;/EM&gt; to help the other members find it more quickly&lt;/P&gt;</description>
    <pubDate>Thu, 25 Nov 2021 02:55:52 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2021-11-25T02:55:52Z</dc:date>
    <item>
      <title>Expression.Error: We cannot apply field access to the type List. Details:     Value=[List]     Key=S</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Expression-Error-We-cannot-apply-field-access-to-the-type-List/m-p/2202245#M51712</link>
      <description>&lt;P&gt;I am trying to use Power Query to give me the difference between consecuvtive start times in the table below. The second row "Start Time" needs to move to the first row of a new column. How do I do this? I tried using index function and using the following code: {[Index]+1}[Start Time] but I get the following error message :&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;&lt;BR /&gt;Expression.Error: We cannot apply field access to the type List. Details: Value=[List] Key=S&lt;BR /&gt;&lt;BR /&gt;What is a good work around for this?&lt;/P&gt;</description>
      <pubDate>Mon, 22 Nov 2021 19:36:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Expression-Error-We-cannot-apply-field-access-to-the-type-List/m-p/2202245#M51712</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-11-22T19:36:56Z</dc:date>
    </item>
    <item>
      <title>Re: Expression.Error: We cannot apply field access to the type List. Details:     Value=[List]     Key=S</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Expression-Error-We-cannot-apply-field-access-to-the-type-List/m-p/2202405#M51719</link>
      <description>&lt;P&gt;{[Index]+1} is just a list containing a single number, which doesn't have an associated field [Start Time].&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You might be interested in my answer on &lt;A href="https://stackoverflow.com/questions/54814815" target="_blank" rel="noopener"&gt;StackOverflow&lt;/A&gt; or a recent post here:&lt;BR /&gt;&lt;A href="https://community.powerbi.com/t5/Desktop/Calculating-Daily-values-from-Cumulative-Total/m-p/2198969" target="_blank" rel="noopener"&gt;https://community.powerbi.com/t5/Desktop/Calculating-Daily-values-from-Cumulative-Total/m-p/2198969&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Nov 2021 21:46:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Expression-Error-We-cannot-apply-field-access-to-the-type-List/m-p/2202405#M51719</guid>
      <dc:creator>AlexisOlson</dc:creator>
      <dc:date>2021-11-22T21:46:44Z</dc:date>
    </item>
    <item>
      <title>Re: Expression.Error: We cannot apply field access to the type List. Details:     Value=[List]     Key=S</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Expression-Error-We-cannot-apply-field-access-to-the-type-List/m-p/2202512#M51724</link>
      <description>&lt;P&gt;HI&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Add two index columns, first idex columns start from 1 and second one start from 0, then mege the table with it self and select the 1st and 2nd column:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;then expand the column and selec the start date:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If this post&amp;nbsp;&lt;STRONG&gt;&lt;SPAN&gt;helps&lt;/SPAN&gt;&lt;/STRONG&gt;, please consider&amp;nbsp;&lt;SPAN&gt;&lt;STRONG&gt;&lt;SPAN&gt;accepting&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;&lt;SPAN&gt;&lt;SPAN&gt;&amp;nbsp;it as the solution&lt;/SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/EM&gt;to help the other members find it more quickly.&lt;BR /&gt;&lt;STRONG&gt;&lt;SPAN&gt;Appreciate your Kudos!!&lt;BR /&gt;&lt;STRONG&gt;LinkedIn:&amp;nbsp;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN&gt;&lt;A href="https://www.linkedin.com/in/vahid-dm/" target="_blank"&gt;www.linkedin.com/in/vahid-dm/&lt;/A&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Nov 2021 23:32:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Expression-Error-We-cannot-apply-field-access-to-the-type-List/m-p/2202512#M51724</guid>
      <dc:creator>VahidDM</dc:creator>
      <dc:date>2021-11-22T23:32:25Z</dc:date>
    </item>
    <item>
      <title>Re: Expression.Error: We cannot apply field access to the type List. Details:     Value=[List]     Key=S</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Expression-Error-We-cannot-apply-field-access-to-the-type-List/m-p/2206842#M51977</link>
      <description>&lt;P&gt;Hi&amp;nbsp; Anonymous&lt;/LI-USER&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;You can also consider using Dax to solve this problem&lt;/P&gt;
&lt;P&gt;Here are the steps you can follow：&lt;/P&gt;
&lt;P&gt;1. In Power query, Add Column –&lt;SPAN&gt; Index Column &lt;/SPAN&gt;–&lt;SPAN&gt; From 1.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;2. Create calculated column.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;New_Date =
var _1=CALCULATE(SUM('Table'[date]),FILTER(ALL('Table'),'Table'[Index]=EARLIER('Table'[Index])+1))
return
IF(
    ISBLANK(_1),BLANK(),_1)&lt;/LI-CODE&gt;
&lt;P&gt;3. Result:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Liu Yang&lt;/P&gt;
&lt;P&gt;If this post &lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider &lt;EM&gt;Accept it as the solution&lt;/EM&gt; to help the other members find it more quickly&lt;/P&gt;</description>
      <pubDate>Thu, 25 Nov 2021 02:55:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Expression-Error-We-cannot-apply-field-access-to-the-type-List/m-p/2206842#M51977</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-11-25T02:55:52Z</dc:date>
    </item>
  </channel>
</rss>

