<?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 operator &amp;lt;= to types List and List. in Power Query</title>
    <link>https://community.fabric.microsoft.com/t5/Power-Query/Expression-Error-We-cannot-apply-operator-lt-to-types-List-and/m-p/2344058#M69964</link>
    <description>&lt;P&gt;Ok I think I see what you are aiming for. Rather than use a condition in that step, I would add the custom column first. Then when you group by Account-ZIP-SKU, you will already have the ones and zeros to do with whatever you'd like, whether count, contains, or even just making an "if any on that Account-ZIP-SKU are 1" after you have your tables grouped--that is, &amp;nbsp;if you've discovered the wonders of the All Rows option in the aggregation.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;--Nate&lt;/P&gt;</description>
    <pubDate>Thu, 17 Feb 2022 07:32:29 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2022-02-17T07:32:29Z</dc:date>
    <item>
      <title>Expression.Error: We cannot apply operator &lt;= to types List and List.</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Expression-Error-We-cannot-apply-operator-lt-to-types-List-and/m-p/2343308#M69937</link>
      <description>&lt;P&gt;Hi All,&lt;BR /&gt;&amp;nbsp;I need guidance on how to fix this above error in a custom query.&lt;BR /&gt;&lt;BR /&gt;Expression.Error: We cannot apply operator &amp;lt;= to types List and List.&lt;/P&gt;&lt;P&gt;Details:&lt;BR /&gt;Operator=&amp;lt;=&lt;BR /&gt;Left=[List]&lt;BR /&gt;Right=[List]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A title="Sample file" href="https://docs.google.com/spreadsheets/d/1acDcIKuLpEdmdRbfEn_tWfUgUzmWc5Km/edit?usp=sharing&amp;amp;ouid=110421848725922329650&amp;amp;rtpof=true&amp;amp;sd=true" target="_self"&gt;https://docs.google.com/spreadsheets/d/1acDcIKuLpEdmdRbfEn_tWfUgUzmWc5Km/edit?usp=sharing&amp;amp;ouid=110421848725922329650&amp;amp;rtpof=true&amp;amp;sd=true&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Feb 2022 23:14:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Expression-Error-We-cannot-apply-operator-lt-to-types-List-and/m-p/2343308#M69937</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-02-16T23:14:51Z</dc:date>
    </item>
    <item>
      <title>Re: Expression.Error: We cannot apply operator &lt;= to types List and List.</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Expression-Error-We-cannot-apply-operator-lt-to-types-List-and/m-p/2343316#M69938</link>
      <description>&lt;P&gt;I see that the data is attached but what are the steps of your power query transforms?&lt;/P&gt;
&lt;P&gt;Can you post the Advanced Editor code please?&lt;/P&gt;</description>
      <pubDate>Wed, 16 Feb 2022 23:38:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Expression-Error-We-cannot-apply-operator-lt-to-types-List-and/m-p/2343316#M69938</guid>
      <dc:creator>HotChilli</dc:creator>
      <dc:date>2022-02-16T23:38:01Z</dc:date>
    </item>
    <item>
      <title>Re: Expression.Error: We cannot apply operator &lt;= to types List and List.</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Expression-Error-We-cannot-apply-operator-lt-to-types-List-and/m-p/2343524#M69946</link>
      <description>&lt;P&gt;Yeah, we know what the error means, but we can't fix it for you until we see&lt;/P&gt;
&lt;P&gt;the expression that is causing the error. You are probably intending to refer to a value &amp;lt;= another value, but are instead using syntax that is causing a list to be compared to another list.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;--Nate&lt;/P&gt;</description>
      <pubDate>Thu, 17 Feb 2022 02:32:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Expression-Error-We-cannot-apply-operator-lt-to-types-List-and/m-p/2343524#M69946</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-02-17T02:32:33Z</dc:date>
    </item>
    <item>
      <title>Re: Expression.Error: We cannot apply operator &lt;= to types List and List.</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Expression-Error-We-cannot-apply-operator-lt-to-types-List-and/m-p/2343647#M69948</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="81111" data-lia-user-login="HotChilli" class="lia-mention lia-mention-user"&gt;HotChilli&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Please see the below.&lt;/P&gt;&lt;P&gt;let&lt;BR /&gt;Source = PQTest,&lt;/P&gt;&lt;P&gt;Custom1 = Table.Group(Source,"Account-Zip-Sku",{{"Sku Count", each if [Invoice Dates] &amp;lt;= [Start of Month] then "0" else "1"}})&lt;BR /&gt;in&lt;BR /&gt;Custom1&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&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;This is the first query - loaded from the sample table. Then I referenced the query to PQ test(2) for which I applied the steps aove in adavanced editor.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Feb 2022 04:05:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Expression-Error-We-cannot-apply-operator-lt-to-types-List-and/m-p/2343647#M69948</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-02-17T04:05:23Z</dc:date>
    </item>
    <item>
      <title>Re: Expression.Error: We cannot apply operator &lt;= to types List and List.</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Expression-Error-We-cannot-apply-operator-lt-to-types-List-and/m-p/2343649#M69949</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have shared some more details below.&lt;BR /&gt;Hope this can help you all members in forum to guide me.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Feb 2022 04:06:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Expression-Error-We-cannot-apply-operator-lt-to-types-List-and/m-p/2343649#M69949</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-02-17T04:06:30Z</dc:date>
    </item>
    <item>
      <title>Re: Expression.Error: We cannot apply operator &lt;= to types List and List.</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Expression-Error-We-cannot-apply-operator-lt-to-types-List-and/m-p/2344058#M69964</link>
      <description>&lt;P&gt;Ok I think I see what you are aiming for. Rather than use a condition in that step, I would add the custom column first. Then when you group by Account-ZIP-SKU, you will already have the ones and zeros to do with whatever you'd like, whether count, contains, or even just making an "if any on that Account-ZIP-SKU are 1" after you have your tables grouped--that is, &amp;nbsp;if you've discovered the wonders of the All Rows option in the aggregation.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;--Nate&lt;/P&gt;</description>
      <pubDate>Thu, 17 Feb 2022 07:32:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Expression-Error-We-cannot-apply-operator-lt-to-types-List-and/m-p/2344058#M69964</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-02-17T07:32:29Z</dc:date>
    </item>
    <item>
      <title>Re: Expression.Error: We cannot apply operator &lt;= to types List and List.</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Expression-Error-We-cannot-apply-operator-lt-to-types-List-and/m-p/2344298#M69974</link>
      <description>&lt;P&gt;Hi, Anonymous&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;to build on what Anonymous&lt;/a&gt; suggested, you need to "discover the wonders of the All Rows option in the aggregation".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is one way how you can achieve what you want to do:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;let
    Source = PQTest,
    #"Grouped Rows" = Table.Group(Source, {"Account-Zip-Sku"}, {{"Grouped Table", each _, type table [Invoice Dates=nullable date, #"Account #"=nullable number, State=nullable text, Zip Code=nullable text, Item Name ID=nullable number, Start of Month=nullable date, #"Account -Zip"=nullable text, #"Account-Zip-Sku"=nullable text]}}),
    #"Added Custom" = Table.AddColumn(#"Grouped Rows", "Custom", each Table.AddColumn([Grouped Table], "Comparison", each if [Invoice Dates] &amp;lt;= [Start of Month] then 0 else 1, Int64.Type)),
    #"Expanded Custom" = Table.ExpandTableColumn(#"Added Custom", "Custom", {"Invoice Dates", "Start of Month", "Comparison"}, {"Invoice Dates", "Start of Month", "Comparison"})
in
    #"Expanded Custom"&lt;/LI-CODE&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Thu, 17 Feb 2022 09:05:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Expression-Error-We-cannot-apply-operator-lt-to-types-List-and/m-p/2344298#M69974</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-02-17T09:05:49Z</dc:date>
    </item>
    <item>
      <title>Re: Expression.Error: We cannot apply operator &lt;= to types List and List.</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Expression-Error-We-cannot-apply-operator-lt-to-types-List-and/m-p/2352117#M70285</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you tell me if your problem has been solved based on Anonymous&lt;/a&gt;&amp;nbsp;?&lt;/P&gt;
&lt;P&gt;If it is, kindly &lt;EM&gt;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&lt;/EM&gt;. More people will benefit from it. Thanks in advance !&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Eyelyn Qin&lt;/P&gt;</description>
      <pubDate>Tue, 22 Feb 2022 02:09:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Expression-Error-We-cannot-apply-operator-lt-to-types-List-and/m-p/2352117#M70285</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-02-22T02:09:11Z</dc:date>
    </item>
    <item>
      <title>Re: Expression.Error: We cannot apply operator &lt;= to types List and List.</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Expression-Error-We-cannot-apply-operator-lt-to-types-List-and/m-p/2354081#M70331</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;This is very close to what I am looking for. I appreciate your help thank you.&lt;BR /&gt;I would like to accept this solution but I am testing this with my orginal data sample this week, then I can confirm if this is the solution.&lt;BR /&gt;&lt;BR /&gt;I learnt a lot with the above query you shared, PQ is so powerful.&lt;BR /&gt;Anonymous&lt;/a&gt;&amp;nbsp;- Yes, I have been using the aggregate option in grouping rows. But I am not very comfortable or polished at writing queries yet, working my way. Appreciate your help too.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Feb 2022 17:48:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Expression-Error-We-cannot-apply-operator-lt-to-types-List-and/m-p/2354081#M70331</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-02-22T17:48:46Z</dc:date>
    </item>
    <item>
      <title>Re: Expression.Error: We cannot apply operator &lt;= to types List and List.</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Expression-Error-We-cannot-apply-operator-lt-to-types-List-and/m-p/2354084#M70332</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Hi,&amp;nbsp;&lt;BR /&gt;This worked with sample data, but the logic I need to build for my work with orginal data is volatile and I want to test the solution to the orginal data and then confirm if this is exact solution.&lt;BR /&gt;&lt;BR /&gt;Thanks for following up.&lt;/P&gt;</description>
      <pubDate>Tue, 22 Feb 2022 17:50:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Expression-Error-We-cannot-apply-operator-lt-to-types-List-and/m-p/2354084#M70332</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-02-22T17:50:32Z</dc:date>
    </item>
    <item>
      <title>Re: Expression.Error: We cannot apply operator &lt;= to types List and List.</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Expression-Error-We-cannot-apply-operator-lt-to-types-List-and/m-p/2361863#M70587</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I tried the query you shared above with my original data and it shows the below error.&lt;BR /&gt;DataFormat.Error: Invalid cell value '#VALUE!'.&lt;BR /&gt;&lt;BR /&gt;This is my query in advanced editor.&lt;BR /&gt;let&lt;BR /&gt;Source = AllSalesData,&lt;BR /&gt;&lt;BR /&gt;#"Grouped Rows" = Table.Group(Source, {"Account-Zip-Sku"}, {{"Grouped Table", each _, type table [Invoice Dates=nullable date,&lt;BR /&gt;Retail Accounts=nullable text, Address=nullable text, City=nullable text, #"Account #"=nullable number,&lt;BR /&gt;State=nullable text, Zip Code=nullable text, Phone=nullable number, Chain Status=nullable text, OnOff Premises=nullable text,&lt;BR /&gt;Brands=nullable text, Item Names=nullable text, Item Name ID=nullable number, Sales Teams=nullable text,&lt;BR /&gt;Sales Depletions 9L Cases=nullable number, Category=nullable text, Account=nullable text, Full Account=nullable text,&lt;BR /&gt;#"City-State"=text, Chain Group=nullable text,Region=nullable text, Year=number, Month=number, Start of Month=date, OnOff Premise Map=nullable text,Data Source=nullable text ,#"Account-Zip-Sku"=text] }}),&lt;BR /&gt;&lt;BR /&gt;#"Added Custom" = Table.AddColumn(#"Grouped Rows", "Custom", each Table.AddColumn([Grouped Table], "Comparison", each if [Invoice Dates] &amp;lt;= [Start of Month] then 1 else 0, Int64.Type)),&lt;BR /&gt;#"Expanded Custom" = Table.ExpandTableColumn(#"Added Custom", "Custom", {"Invoice Dates", "Start of Month", "Comparison"}, {"Invoice Dates", "Start of Month", "Comparison"}),&lt;BR /&gt;#"Expanded Grouped Table" = Table.ExpandTableColumn(#"Expanded Custom", "Grouped Table", {"Retail Accounts", "Address", "City", "Account #", "State", "Zip Code", "Phone", "Chain Status", "OnOff Premises",&lt;BR /&gt;"Brands", "Item Names", "Item Name ID", "Sales Teams", "Sales Depletions 9L Cases", "Category","Account","Full Account", "City-State", "Chain Group", "Region","Year", "Month","OnOff Premise Map","Data Source"}),&lt;BR /&gt;#"Changed Type" = Table.TransformColumnTypes(#"Expanded Grouped Table",{{"Account-Zip-Sku", type text}, {"Retail Accounts", type text}, {"Address", type text}, {"City", type text}, {"Account #", Int64.Type}, {"State", type text},&lt;BR /&gt;{"Zip Code", Int64.Type}, {"Phone", Int64.Type}, {"Chain Status", type text}, {"OnOff Premises", type text}, {"Brands", type text}, {"Item Names", type text}, {"Item Name ID", Int64.Type}, {"Sales Teams", type text},&lt;BR /&gt;{"Sales Depletions 9L Cases", type number}, {"Region", type text}, {"City-State", type text}, {"Category", type text}, {"Year", Int64.Type}, {"Month", Int64.Type}, {"Account", type text},{"Full Account", type text},&lt;BR /&gt;{"Chain Group", type text},{"OnOff Premise Map", type text},{"Data Source", type text}, {"Invoice Dates", type date}, {"Start of Month", type date}, {"Comparison", Int64.Type}})&lt;BR /&gt;in&lt;BR /&gt;#"Changed Type"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I am trying to achieve is the same.&lt;BR /&gt;1)Sku Count&amp;nbsp; in a custom column&lt;BR /&gt;2) New Customer or account flag using the Sku Count logic.&lt;BR /&gt;&lt;BR /&gt;Attaching my orginal data file after removing confidential data.&lt;BR /&gt;Please help.&amp;nbsp;&lt;BR /&gt;Anonymous&lt;/a&gt;&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="81111" data-lia-user-login="HotChilli" class="lia-mention lia-mention-user"&gt;HotChilli&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A title="Sample File" href="https://docs.google.com/spreadsheets/d/1hsK7UnC8DqhLskYWCZyHhalyP9lYpsdP/edit?usp=sharing&amp;amp;ouid=110421848725922329650&amp;amp;rtpof=true&amp;amp;sd=true" target="_self"&gt;https://docs.google.com/spreadsheets/d/1hsK7UnC8DqhLskYWCZyHhalyP9lYpsdP/edit?usp=sharing&amp;amp;ouid=110421848725922329650&amp;amp;rtpof=true&amp;amp;sd=true&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Feb 2022 20:29:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Expression-Error-We-cannot-apply-operator-lt-to-types-List-and/m-p/2361863#M70587</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-02-25T20:29:05Z</dc:date>
    </item>
    <item>
      <title>Re: Expression.Error: We cannot apply operator &lt;= to types List and List.</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Expression-Error-We-cannot-apply-operator-lt-to-types-List-and/m-p/2362385#M70614</link>
      <description>&lt;P&gt;I bet it's the Account # field causing trouble. It makes it look like escape clauses (#"Account &lt;STRONG&gt;#"&lt;/STRONG&gt;). Try renaming it Account Number.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;--Nate&lt;/P&gt;</description>
      <pubDate>Sat, 26 Feb 2022 16:55:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Expression-Error-We-cannot-apply-operator-lt-to-types-List-and/m-p/2362385#M70614</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-02-26T16:55:22Z</dc:date>
    </item>
    <item>
      <title>Re: Expression.Error: We cannot apply operator &lt;= to types List and List.</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Expression-Error-We-cannot-apply-operator-lt-to-types-List-and/m-p/2364018#M70678</link>
      <description>&lt;P&gt;Hi Anonymous&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I do not see the error you mentioned after I have downloaded your sample data and used your query.&lt;/P&gt;&lt;P&gt;I could only see this error in &lt;EM&gt;Account #&lt;/EM&gt; column: "DataFormat.Error: We couldn't convert to Number."&lt;/P&gt;&lt;P&gt;This was because in the last step, Changed Type, you have this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;{"Account #", Int64.Type}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;while you should have this&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;{"Account #", type text}&lt;/LI-CODE&gt;&lt;P&gt;The error you have mentioned: DataFormat.Error: Invalid cell value '#VALUE!'&lt;/P&gt;&lt;P&gt;could indicate that there are some error values in your full data set. You would need to handle them first (either by ignoring, replacing or removing them).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the file below I have used your query with the above adjustment and I can see no errors.&lt;/P&gt;&lt;P&gt;&lt;A href="https://1drv.ms/x/s!AmEjImBLVaj7hJ6fUMeOqfnedZTbePw" target="_blank" rel="noopener"&gt;Sample-edited.xlsx&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Feb 2022 08:31:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Expression-Error-We-cannot-apply-operator-lt-to-types-List-and/m-p/2364018#M70678</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-02-28T08:31:12Z</dc:date>
    </item>
  </channel>
</rss>

