<?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 dataflow filter in Data Engineering</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Engineering/dataflow-filter/m-p/4258825#M4811</link>
    <description>&lt;P&gt;in dataflow gen2 how is it possible to do this filter on a dataset?&lt;/P&gt;&lt;P&gt;lower(trim(column2)) ==&amp;nbsp;lower(trim(column7))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;this means I only want to ingest if column2 value is as same as column7&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thank you&lt;/P&gt;</description>
    <pubDate>Sat, 26 Oct 2024 06:49:35 GMT</pubDate>
    <dc:creator>arkiboys2</dc:creator>
    <dc:date>2024-10-26T06:49:35Z</dc:date>
    <item>
      <title>dataflow filter</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/dataflow-filter/m-p/4258825#M4811</link>
      <description>&lt;P&gt;in dataflow gen2 how is it possible to do this filter on a dataset?&lt;/P&gt;&lt;P&gt;lower(trim(column2)) ==&amp;nbsp;lower(trim(column7))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;this means I only want to ingest if column2 value is as same as column7&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thank you&lt;/P&gt;</description>
      <pubDate>Sat, 26 Oct 2024 06:49:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/dataflow-filter/m-p/4258825#M4811</guid>
      <dc:creator>arkiboys2</dc:creator>
      <dc:date>2024-10-26T06:49:35Z</dc:date>
    </item>
    <item>
      <title>Re: dataflow filter</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/dataflow-filter/m-p/4258877#M4813</link>
      <description>&lt;P&gt;You need to manually edit the M code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Advanced Editor is useful for this.&lt;/P&gt;</description>
      <pubDate>Sat, 26 Oct 2024 08:12:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/dataflow-filter/m-p/4258877#M4813</guid>
      <dc:creator>frithjof_v</dc:creator>
      <dc:date>2024-10-26T08:12:10Z</dc:date>
    </item>
    <item>
      <title>Re: dataflow filter</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/dataflow-filter/m-p/4258915#M4816</link>
      <description>&lt;P&gt;Similar to this code (you can paste this code into a blank query):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;let
  Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WysgvKk5VAAElHSUQ5eFfFOyqFKsTrZScWAKTADKLwWIu+elQdS7+7goQaZC4s2MIUBxEgnge/kFAM8DqwMxiJJVpOfnlqUVASTcf//DUIphMLAA=", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [column2 = _t, column7 = _t]),
  #"Trimmed text" = Table.TransformColumns(Source, {{"column2", each Text.Trim(_), type nullable text}}),
  #"Trimmed text 1" = Table.TransformColumns(#"Trimmed text", {{"column7", each Text.Trim(_), type nullable text}}),
  #"Lowercased text" = Table.TransformColumns(#"Trimmed text 1", {{"column7", each Text.Lower(_), type nullable text}}),
  #"Lowercased text 1" = Table.TransformColumns(#"Lowercased text", {{"column2", each Text.Lower(_), type nullable text}}),
  #"Filtered rows" = Table.SelectRows(#"Lowercased text 1", each [column2] = [column7])
in
  #"Filtered rows"&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 26 Oct 2024 08:42:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/dataflow-filter/m-p/4258915#M4816</guid>
      <dc:creator>frithjof_v</dc:creator>
      <dc:date>2024-10-26T08:42:54Z</dc:date>
    </item>
    <item>
      <title>Re: dataflow filter</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/dataflow-filter/m-p/4259368#M4839</link>
      <description>&lt;P&gt;many thanks&lt;/P&gt;</description>
      <pubDate>Sun, 27 Oct 2024 07:12:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/dataflow-filter/m-p/4259368#M4839</guid>
      <dc:creator>arkiboys2</dc:creator>
      <dc:date>2024-10-27T07:12:32Z</dc:date>
    </item>
  </channel>
</rss>

