<?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: Overlay Two Tabel in Power Query</title>
    <link>https://community.fabric.microsoft.com/t5/Power-Query/Overlay-Two-Tabel/m-p/3144334#M100744</link>
    <description>&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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I do not want to do this same step 365 times, it is not going about to chacke if is date or not, I want to use List with colums.... something like this....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;#"Aantal samengevoegd" = Table.AggregateTableColumn(#"Rijen gegroepeerd", "Aantal", {{"1-1-2023", List.Buffer, "Totaal van 1-1-2023"}, {"2-1-2023", List.Buffer, "Totaal van 2-1-2023"}}),&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;I need something like &lt;FONT color="#339966"&gt;Table.AggregateTableColumn(#"Rijen gegroepeerd", "Aantal", &lt;FONT color="#00FF00"&gt;each _ Column in ColumnList&lt;/FONT&gt;, List.Buffer, Column Name)&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;#"Uitgepakte waarden" = Table.TransformColumns(#"Aantal samengevoegd", {"Totaal van 1-1-2023", each Text.Combine(List.Transform(_, Text.From), " "), type text}),&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;#"Uitgepakte waarden1" = Table.TransformColumns(#"Uitgepakte waarden", {"Totaal van 2-1-2023", each Text.Combine(List.Transform(_, Text.From), " "), type text})&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;This one i need to do one time and not 365 times....&lt;/P&gt;&lt;P&gt;&lt;FONT color="#339966"&gt;#"Uitgepakte waarden1" = Table.TransformColumns(#"Uitgepakte waarden", {&lt;FONT color="#00FF00"&gt;each column&lt;/FONT&gt;, each Text.Combine(List.Transform(_, Text.From), " "), type text})&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm not sure I do it good&lt;/P&gt;</description>
    <pubDate>Tue, 21 Mar 2023 10:31:16 GMT</pubDate>
    <dc:creator>JarekM</dc:creator>
    <dc:date>2023-03-21T10:31:16Z</dc:date>
    <item>
      <title>Overlay Two Tabel</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Overlay-Two-Tabel/m-p/3144196#M100734</link>
      <description>&lt;P&gt;Hi, I am New&lt;/P&gt;&lt;P&gt;maybe someone can help me here&lt;/P&gt;&lt;P&gt;I need to overlaay two tabel&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried to group but got stuck,&amp;nbsp;how to do this using :&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;#"Aantal samengevoegd" = Table.AggregateTableColumn(#"Rijen gegroepeerd", "Aantal", {{"1-1-2023", List.Buffer, "1-1-2023"}}),&lt;BR /&gt;#"Uitgepakte waarden" = Table.TransformColumns(#"Aantal samengevoegd", {"1-1-2023", each Text.Combine(List.Transform(_, Text.From), " "), type text})&amp;nbsp; with replacing dates for "each _"??&lt;/P&gt;&lt;P&gt;Thank You for Help!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Mar 2023 09:11:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Overlay-Two-Tabel/m-p/3144196#M100734</guid>
      <dc:creator>JarekM</dc:creator>
      <dc:date>2023-03-21T09:11:51Z</dc:date>
    </item>
    <item>
      <title>Re: Overlay Two Tabel</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Overlay-Two-Tabel/m-p/3144237#M100736</link>
      <description>&lt;P&gt;Hello - below is how you can add a new column that checks whether or not the value is a date.&amp;nbsp; If you can post a sample of your data and show what your expected result is I can help further.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMtQ31DcyMDJWitWJVkrKKU0FM4BiCNH0otTUPKXYWAA=", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Column1 = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"Column1", type text}}),
    #"Added Custom" = Table.AddColumn(#"Changed Type", "Custom", each try Value.Is ( Date.From ( [Column1] ), type date ) otherwise false)
in
    #"Added Custom"
&lt;/LI-CODE&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;</description>
      <pubDate>Tue, 21 Mar 2023 09:34:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Overlay-Two-Tabel/m-p/3144237#M100736</guid>
      <dc:creator>jennratten</dc:creator>
      <dc:date>2023-03-21T09:34:02Z</dc:date>
    </item>
    <item>
      <title>Re: Overlay Two Tabel</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Overlay-Two-Tabel/m-p/3144334#M100744</link>
      <description>&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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I do not want to do this same step 365 times, it is not going about to chacke if is date or not, I want to use List with colums.... something like this....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;#"Aantal samengevoegd" = Table.AggregateTableColumn(#"Rijen gegroepeerd", "Aantal", {{"1-1-2023", List.Buffer, "Totaal van 1-1-2023"}, {"2-1-2023", List.Buffer, "Totaal van 2-1-2023"}}),&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;I need something like &lt;FONT color="#339966"&gt;Table.AggregateTableColumn(#"Rijen gegroepeerd", "Aantal", &lt;FONT color="#00FF00"&gt;each _ Column in ColumnList&lt;/FONT&gt;, List.Buffer, Column Name)&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;#"Uitgepakte waarden" = Table.TransformColumns(#"Aantal samengevoegd", {"Totaal van 1-1-2023", each Text.Combine(List.Transform(_, Text.From), " "), type text}),&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;#"Uitgepakte waarden1" = Table.TransformColumns(#"Uitgepakte waarden", {"Totaal van 2-1-2023", each Text.Combine(List.Transform(_, Text.From), " "), type text})&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;This one i need to do one time and not 365 times....&lt;/P&gt;&lt;P&gt;&lt;FONT color="#339966"&gt;#"Uitgepakte waarden1" = Table.TransformColumns(#"Uitgepakte waarden", {&lt;FONT color="#00FF00"&gt;each column&lt;/FONT&gt;, each Text.Combine(List.Transform(_, Text.From), " "), type text})&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm not sure I do it good&lt;/P&gt;</description>
      <pubDate>Tue, 21 Mar 2023 10:31:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Overlay-Two-Tabel/m-p/3144334#M100744</guid>
      <dc:creator>JarekM</dc:creator>
      <dc:date>2023-03-21T10:31:16Z</dc:date>
    </item>
    <item>
      <title>Re: Overlay Two Tabel</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Overlay-Two-Tabel/m-p/3144407#M100753</link>
      <description>&lt;P&gt;Hello - instead of looping through columns, I think it would be better to append the tables, unpivot, transform and repivot, like this:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;let
    Source = Table.Combine({Table1, Table2}),
    #"Unpivoted Other Columns" = Table.UnpivotOtherColumns(Source, {"Name", "Place"}, "Attribute", "Value"),
    #"Replaced Value" = Table.ReplaceValue(#"Unpivoted Other Columns","",null,Replacer.ReplaceValue,{"Value"}),
    #"Grouped Rows" = Table.Group(#"Replaced Value", {"Name", "Place", "Attribute"}, {{"Data", each _, type table [Name=nullable text, Place=nullable text, Attribute=text, Value=text]}}),
    #"Added Custom" = Table.AddColumn(#"Grouped Rows", "Custom", each if List.NonNullCount ( [Data][Value] ) &amp;gt; 1 then Text.Combine ( List.Sort ( [Data] [Value] ), " - " ) else List.RemoveNulls ( [Data][Value] ){0} ),
    #"Removed Columns" = Table.RemoveColumns(#"Added Custom",{"Data"}),
    #"Pivoted Column" = Table.Pivot(#"Removed Columns", List.Distinct(#"Removed Columns"[Attribute]), "Attribute", "Custom")
in
    #"Pivoted Column"&lt;/LI-CODE&gt;
&lt;P&gt;Result&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Mar 2023 11:06:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Overlay-Two-Tabel/m-p/3144407#M100753</guid>
      <dc:creator>jennratten</dc:creator>
      <dc:date>2023-03-21T11:06:45Z</dc:date>
    </item>
    <item>
      <title>Re: Overlay Two Tabel</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Overlay-Two-Tabel/m-p/3144729#M100773</link>
      <description>&lt;P&gt;thank you for your help, it works perfectly&lt;span class="lia-unicode-emoji" title=":beaming_face_with_smiling_eyes:"&gt;😁&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Mar 2023 13:21:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Overlay-Two-Tabel/m-p/3144729#M100773</guid>
      <dc:creator>JarekM</dc:creator>
      <dc:date>2023-03-21T13:21:01Z</dc:date>
    </item>
  </channel>
</rss>

