<?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: dataflow filter in Data Engineering</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Engineering/dataflow-filter/m-p/4258916#M4817</link>
    <description>&lt;P&gt;This method only keeps the "completed" state:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;let
  Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WysgvKk5VAAElHSUQ5eFfFOwKZCfn5xbkpJakpijF6kQrJSeWwBQBmcVAqiAnMS8PKuuSnw7V7eLvrgBTiKzC2TEEKAIhUU328A8C2we2Gsgsxqo/LSe/PLUIKOjm4x+eWoSpJhYA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [column2 = _t, column7 = _t, state = _t]),
  #"Filtered rows" = Table.SelectRows(Source, each ([state] = "completed"))
in
  #"Filtered rows"&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This method explicitly excludes the "planned" and "deleted" states:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;let
  Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WysgvKk5VAAElHSUQ5eFfFOwKZCfn5xbkpJakpijF6kQrJSeWwBQBmcVAqiAnMS8PKuuSnw7V7eLvrgBTiKzC2TEEKAIhUU328A8C2we2Gsgsxqo/LSe/PLUIKOjm4x+eWoSpJhYA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [column2 = _t, column7 = _t, state = _t]),
  #"Filtered rows" = Table.SelectRows(Source, each ([state] &amp;lt;&amp;gt; "planned" and [state] &amp;lt;&amp;gt; "deleted"))
in
  #"Filtered rows"&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Which filtering logic applies best in your case?&lt;/P&gt;</description>
    <pubDate>Sat, 26 Oct 2024 08:47:35 GMT</pubDate>
    <dc:creator>frithjof_v</dc:creator>
    <dc:date>2024-10-26T08:47:35Z</dc:date>
    <item>
      <title>dataflow filter</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/dataflow-filter/m-p/4258809#M4810</link>
      <description>&lt;P&gt;in dataflow of fabric datafactory I am transforming data...&lt;/P&gt;&lt;P&gt;one of the columns, state, at present only has 'completed' and 'planned'&lt;/P&gt;&lt;P&gt;if in future there is also 'deleted' state, then I want to make sure no row is ingested for:&lt;/P&gt;&lt;P&gt;state = 'deleted' or state = 'planned'&lt;/P&gt;&lt;P&gt;how do I do this?&lt;/P&gt;&lt;P&gt;at present in th edrop down of the state column I can only un-check 'planned' but what about 'deleted' state which is not present currently?&lt;/P&gt;&lt;P&gt;I want to safe-gaurd for 'deleted' state if it comes in future.&lt;/P&gt;&lt;P&gt;thank you&lt;/P&gt;</description>
      <pubDate>Sat, 26 Oct 2024 06:18:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/dataflow-filter/m-p/4258809#M4810</guid>
      <dc:creator>arkiboys2</dc:creator>
      <dc:date>2024-10-26T06:18:09Z</dc:date>
    </item>
    <item>
      <title>Re: dataflow filter</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/dataflow-filter/m-p/4258875#M4812</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:11:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/dataflow-filter/m-p/4258875#M4812</guid>
      <dc:creator>frithjof_v</dc:creator>
      <dc:date>2024-10-26T08:11:19Z</dc:date>
    </item>
    <item>
      <title>Re: dataflow filter</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/dataflow-filter/m-p/4258916#M4817</link>
      <description>&lt;P&gt;This method only keeps the "completed" state:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;let
  Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WysgvKk5VAAElHSUQ5eFfFOwKZCfn5xbkpJakpijF6kQrJSeWwBQBmcVAqiAnMS8PKuuSnw7V7eLvrgBTiKzC2TEEKAIhUU328A8C2we2Gsgsxqo/LSe/PLUIKOjm4x+eWoSpJhYA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [column2 = _t, column7 = _t, state = _t]),
  #"Filtered rows" = Table.SelectRows(Source, each ([state] = "completed"))
in
  #"Filtered rows"&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This method explicitly excludes the "planned" and "deleted" states:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;let
  Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WysgvKk5VAAElHSUQ5eFfFOwKZCfn5xbkpJakpijF6kQrJSeWwBQBmcVAqiAnMS8PKuuSnw7V7eLvrgBTiKzC2TEEKAIhUU328A8C2we2Gsgsxqo/LSe/PLUIKOjm4x+eWoSpJhYA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [column2 = _t, column7 = _t, state = _t]),
  #"Filtered rows" = Table.SelectRows(Source, each ([state] &amp;lt;&amp;gt; "planned" and [state] &amp;lt;&amp;gt; "deleted"))
in
  #"Filtered rows"&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Which filtering logic applies best in your case?&lt;/P&gt;</description>
      <pubDate>Sat, 26 Oct 2024 08:47:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/dataflow-filter/m-p/4258916#M4817</guid>
      <dc:creator>frithjof_v</dc:creator>
      <dc:date>2024-10-26T08:47:35Z</dc:date>
    </item>
  </channel>
</rss>

