<?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: Column created in a table appears in another table in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Column-created-in-a-table-appears-in-another-table/m-p/4907861#M64177</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/838399"&gt;@v-priyankata&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We had a procedure on dataset that would bind the columns they created dynamically to table or custom table, we had to point it to custom table in that procedure which could be one of the root cause of the issue,(So the code was trying to add to new table and the procedure pointed to old table and when we refreshed the dataset it would appear in 2 tables) anyways we are currently not facing the duplicate column issue for now after we changed the procedure to point to new table, but we are not sure if it would happen anytime again.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 24 Dec 2025 05:25:43 GMT</pubDate>
    <dc:creator>ChetanK004</dc:creator>
    <dc:date>2025-12-24T05:25:43Z</dc:date>
    <item>
      <title>Column created in a table appears in another table</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Column-created-in-a-table-appears-in-another-table/m-p/4884015#M63900</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using&amp;nbsp;Microsoft.AnalysisServices.Tabular to alter the dataset via C# code.&lt;/P&gt;&lt;P&gt;i have a table called &lt;STRONG&gt;Table A&amp;nbsp;&lt;/STRONG&gt;and there is another Table Called &lt;STRONG&gt;Table A Custom&lt;/STRONG&gt;, Now when i try to add a column in &lt;STRONG&gt;Table A Custom&amp;nbsp;&lt;/STRONG&gt;it also appears on &lt;STRONG&gt;Table A&amp;nbsp;&lt;/STRONG&gt;some how, I have debugged the whole case and have seen that through code it is only updating a single table&amp;nbsp;&lt;STRONG&gt;Table A Custom&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;// tables contain ['Table A Custom','Table B Custom']
for( tableName in tables){               
var pbiTable = database.Model.Tables
                                        .FirstOrDefault(x =&amp;gt; x.Name.Equals(tableName, StringComparison.OrdinalIgnoreCase));
                        var pbiColumns = pbiTable?.Columns;
                        var fieldsToAdd = getFieldsFromDb();
                            fieldsToAdd.ForEach(field =&amp;gt; AddField(field.Name, field.DataType, pbiColumns));
}

// Function to add the column
        private void AddField(string fieldName, DataType fieldType, ColumnCollection pbiColumns)
        {
            if (pbiColumns == null)
            {
                return;
            }

            var newColumn = new Microsoft.AnalysisServices.Tabular.DataColumn
            {
                Name = fieldName,
                DataType = fieldType,
                SourceColumn = fieldName,
                LineageTag = fieldName + "-" + Guid.NewGuid(),
            };
            pbiColumns.Add(newColumn);
        }&lt;/LI-CODE&gt;&lt;P&gt;Note: This behaviour is intermittent, does not happen everytime i try to do, but it usually happens when i freshly publish the dataset to service and try to add fields to the table via code. also note sometimes the fields do not appear quickly but appears after a refresh to that dataset. i am unable to find the root cause for the same&lt;/P&gt;</description>
      <pubDate>Mon, 24 Nov 2025 11:55:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Column-created-in-a-table-appears-in-another-table/m-p/4884015#M63900</guid>
      <dc:creator>ChetanK004</dc:creator>
      <dc:date>2025-11-24T11:55:58Z</dc:date>
    </item>
    <item>
      <title>Re: Column created in a table appears in another table</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Column-created-in-a-table-appears-in-another-table/m-p/4884054#M63901</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1425130"&gt;@ChetanK004&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This behaviour is related to how &lt;STRONG&gt;Microsoft.AnalysisServices.Tabular&lt;/STRONG&gt; manages object references in the Tabular Object Model (TOM). When you add a column to a table, the change is applied to the in-memory model, and then persisted when you call Model.SaveChanges(). If columns appear in another table, it usually indicates one of the following:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please, look at steps bellow an try:&lt;/P&gt;&lt;H3&gt;&lt;STRONG&gt;Root Causes&lt;/STRONG&gt;&lt;/H3&gt;&lt;OL&gt;&lt;LI&gt;&lt;DIV class=""&gt;&lt;STRONG&gt;Shared or cloned references&lt;/STRONG&gt;&lt;/DIV&gt;&lt;UL&gt;&lt;LI&gt;If pbiColumns is referencing the same ColumnCollection object for both tables due to incorrect initialisation or reuse of objects, adding a column will affect both.&lt;/LI&gt;&lt;LI&gt;This can happen if the tables were cloned or created from the same object without deep copying.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;DIV class=""&gt;&lt;STRONG&gt;Model refresh behaviour&lt;/STRONG&gt;&lt;/DIV&gt;&lt;UL&gt;&lt;LI&gt;After publishing, the service may apply schema changes during refresh, merging metadata from the original source and your custom changes.&lt;/LI&gt;&lt;LI&gt;If the original table and the custom table share the same Source or LineageTag logic, the refresh can propagate columns unexpectedly.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;DIV class=""&gt;&lt;STRONG&gt;Intermittent timing&lt;/STRONG&gt;&lt;/DIV&gt;&lt;UL&gt;&lt;LI&gt;When changes are made immediately after publishing, the model may not have fully synchronised with the service, causing delayed appearance of columns.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;HR /&gt;&lt;H3&gt;&lt;STRONG&gt;Recommended Fixes&lt;/STRONG&gt;&lt;/H3&gt;&lt;H4&gt;&amp;nbsp;&lt;/H4&gt;&lt;H4&gt;&lt;STRONG&gt;Ensure unique references&lt;/STRONG&gt;&lt;/H4&gt;&lt;DIV class=""&gt;Before adding columns, confirm that you are working with the correct table object:&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;LI-CODE lang="csharp"&gt;var pbiTable = database.Model.Tables
    .FirstOrDefault(x =&amp;gt; x.Name.Equals(tableName, StringComparison.OrdinalIgnoreCase));

if (pbiTable == null)
    throw new Exception($"Table {tableName} not found.");

var pbiColumns = pbiTable.Columns;&lt;/LI-CODE&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;STRONG&gt;Avoid reusing pbiColumns across iterations.&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;STRONG&gt;Save and refresh properly&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;After adding columns:&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;LI-CODE lang="csharp"&gt;database.Model.SaveChanges();&lt;/LI-CODE&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;If this answer was helpful in any way, I would be pleased to receive a &lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt;, as well as the satisfaction of seeing a DAX measure work for the first time without needing yet another FILTER.&lt;BR /&gt;Please mark it as the accepted solution. This helps other community members find the quickest path and saves them from another endless loop &lt;span class="lia-unicode-emoji" title=":cyclone:"&gt;🌀&lt;/span&gt;.&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Mon, 24 Nov 2025 12:16:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Column-created-in-a-table-appears-in-another-table/m-p/4884054#M63901</guid>
      <dc:creator>Zanqueta</dc:creator>
      <dc:date>2025-11-24T12:16:25Z</dc:date>
    </item>
    <item>
      <title>Re: Column created in a table appears in another table</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Column-created-in-a-table-appears-in-another-table/m-p/4886440#M63928</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/861055"&gt;@Zanqueta&lt;/a&gt;&amp;nbsp;, Thanks for the response, For the below root causes&lt;/P&gt;&lt;H3&gt;&lt;STRONG&gt;Root Causes&lt;/STRONG&gt;&lt;/H3&gt;&lt;OL&gt;&lt;LI&gt;&lt;DIV class=""&gt;&lt;STRONG&gt;Shared or cloned references&lt;/STRONG&gt;&lt;/DIV&gt;&lt;UL&gt;&lt;LI&gt;If pbiColumns is referencing the same ColumnCollection object for both tables due to incorrect initialisation or reuse of objects, adding a column will affect both - &lt;STRONG&gt;The base Table is not in the loop, also i tried debugging the code which only looped once for the custom table but the fields appeared in both tables&lt;/STRONG&gt;.&lt;/LI&gt;&lt;LI&gt;This can happen if the tables were cloned or created from the same object without deep copying. - &lt;STRONG&gt;Probably this might be a candidate, Although we created the table using TOM not via code, so we will re-build the dataset by creating new custom field from scratch&lt;/STRONG&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;DIV class=""&gt;&lt;STRONG&gt;Model refresh behaviour&lt;/STRONG&gt;&lt;/DIV&gt;&lt;UL&gt;&lt;LI&gt;If the original table and the custom table share the same Source or LineageTag logic, the refresh can propagate columns unexpectedly. - &lt;STRONG&gt;This can be a candidate too, but i when i add new column i dont specify the Lineage Tag, i believe Power BI creates one by default&lt;/STRONG&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;STRONG&gt;Save and refresh properly&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;After adding columns i do perform the&amp;nbsp;&lt;STRONG&gt;database.Model.SaveChanges()&lt;/STRONG&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;There is One more observation i found is regarding&amp;nbsp;&lt;STRONG&gt;RequestRefresh(RefreshType.Full);&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;Before i used to call an &lt;STRONG&gt;RefreshDatasetInGroupAsync&lt;/STRONG&gt; REST API by passing the&amp;nbsp;modified tables as a parmeters to DatasetRefreshRequest and perform a datataset refresh after called &lt;EM&gt;database.Model.SaveChanges()&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;But i recently found out that&amp;nbsp;&amp;nbsp;&lt;STRONG&gt;RequestRefresh&amp;nbsp;&lt;/STRONG&gt;is a better option if we are changing the scheme of dataset (like adding / delete columns), Which should be called before&lt;EM&gt; database.Model.SaveChanges()&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;Now i had a scenario where i added few columns to the dataset and performed dataset refresh with below refresh mode&lt;/DIV&gt;&lt;DIV class=""&gt;1)&lt;STRONG&gt; Model.RequestRefresh(RefreshType.Full)&lt;/STRONG&gt; This performed action and i observerd an entry in dataset refresh history in the pbi service, every time i ran the code everytime i saw an entry of type&amp;nbsp;&lt;STRONG&gt;Via XMLA Endpoint&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;2)&amp;nbsp;&lt;STRONG&gt;Table.RequestRefresh(RefreshType.Full)&amp;nbsp;&lt;/STRONG&gt;This performed action sometimes, i observed it added an entry to the dataset refresh history in this 2 cases&lt;/DIV&gt;&lt;DIV class=""&gt;1) If the dataset was published freshly and we ran the code, it did a refresh and added entry&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;2) If dataset had changes ( adding / deleting columns via code) for the first time and we ran the code , it did a refresh and added entry , there after if we did any changes to dataset, it niether refreshed nor created an entry in the history, is this inteded?&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;I did look around some articles where it was mentioned that each RequestRefresh will add an entry in the history either its model / table, is there anything am missing?&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Nov 2025 09:49:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Column-created-in-a-table-appears-in-another-table/m-p/4886440#M63928</guid>
      <dc:creator>ChetanK004</dc:creator>
      <dc:date>2025-11-26T09:49:15Z</dc:date>
    </item>
    <item>
      <title>Re: Column created in a table appears in another table</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Column-created-in-a-table-appears-in-another-table/m-p/4886767#M63932</link>
      <description>&lt;P&gt;&lt;SPAN&gt;&lt;!--  ScriptorStartFragment  --&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;Hi &lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1425130"&gt;@ChetanK004&lt;/a&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV class=""&gt;That's it for me. Seems the rigth direction, just have pay attention to:&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;Make sure each table is instantiated independently:&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;P&gt;&lt;SPAN&gt;&lt;!--  ScriptorStartFragment  --&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;LI-CODE lang="csharp"&gt;var pbiTable = database.Model.Tables
    .FirstOrDefault(x =&amp;gt; x.Name.Equals(tableName, StringComparison.OrdinalIgnoreCase));
if (pbiTable == null)
    throw new Exception($"Table {tableName} not found.");&lt;/LI-CODE&gt;&lt;P&gt;Add columns safely&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;private void AddField(string fieldName, DataType fieldType, ColumnCollection pbiColumns)
{
    if (pbiColumns == null) return;

    var newColumn = new Microsoft.AnalysisServices.Tabular.DataColumn
    {
        Name = fieldName,
        DataType = fieldType,
        SourceColumn = fieldName
    };
    pbiColumns.Add(newColumn);&lt;/LI-CODE&gt;&lt;P&gt;&lt;STRONG&gt;Use the recomended refresh method and order&lt;/STRONG&gt; For schema changes:&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;Model.RequestRefresh(RefreshType.Full);
database.Model.SaveChanges();&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Prefer Model.RequestRefresh(RefreshType.Full) over Table.RequestRefresh for structural changes.&lt;/LI&gt;&lt;LI&gt;This ensures the dataset refresh is properly registered in the service.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;References:&lt;/P&gt;&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/dotnet/api/microsoft.analysisservices.tabular.model.requestrefresh?view=analysisservices-dotnet" target="_blank" rel="noopener"&gt;Model.RequestRefresh Method (Microsoft.AnalysisServices.Tabular) | Microsoft Learn&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please, let me know if it worked.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class=""&gt;If this answer was helpful in any way, I’d be happy to receive a &lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt; and the joy of seeing a DAX measure work for the first time without needing yet another FILTER.&lt;/DIV&gt;&lt;DIV class=""&gt;Please mark it as the accepted solution. This helps other community members find the quickest path and saves them from another endless loop &lt;span class="lia-unicode-emoji" title=":cyclone:"&gt;🌀&lt;/span&gt;.&lt;/DIV&gt;&lt;P&gt;&lt;SPAN&gt;&lt;!--  ScriptorEndFragment  --&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;!--  ScriptorEndFragment  --&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Nov 2025 15:14:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Column-created-in-a-table-appears-in-another-table/m-p/4886767#M63932</guid>
      <dc:creator>Zanqueta</dc:creator>
      <dc:date>2025-11-26T15:14:36Z</dc:date>
    </item>
    <item>
      <title>Re: Column created in a table appears in another table</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Column-created-in-a-table-appears-in-another-table/m-p/4903002#M64099</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1425130"&gt;@ChetanK004&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for reaching out to the Microsoft Fabric Forum Community.&lt;/P&gt;
&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/861055"&gt;@Zanqueta&lt;/a&gt;&amp;nbsp;Thanks for the inputs.&lt;/P&gt;
&lt;P&gt;I hope the information provided by user was helpful. If you still have questions, please don't hesitate to reach out to the community.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Dec 2025 10:57:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Column-created-in-a-table-appears-in-another-table/m-p/4903002#M64099</guid>
      <dc:creator>v-priyankata</dc:creator>
      <dc:date>2025-12-16T10:57:24Z</dc:date>
    </item>
    <item>
      <title>Re: Column created in a table appears in another table</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Column-created-in-a-table-appears-in-another-table/m-p/4907854#M64176</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1425130"&gt;@ChetanK004&lt;/a&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Hope everything’s going smoothly on your end. I wanted to check if the issue got sorted. if you have any other issues please reach community.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Dec 2025 05:13:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Column-created-in-a-table-appears-in-another-table/m-p/4907854#M64176</guid>
      <dc:creator>v-priyankata</dc:creator>
      <dc:date>2025-12-24T05:13:42Z</dc:date>
    </item>
    <item>
      <title>Re: Column created in a table appears in another table</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Column-created-in-a-table-appears-in-another-table/m-p/4907861#M64177</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/838399"&gt;@v-priyankata&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We had a procedure on dataset that would bind the columns they created dynamically to table or custom table, we had to point it to custom table in that procedure which could be one of the root cause of the issue,(So the code was trying to add to new table and the procedure pointed to old table and when we refreshed the dataset it would appear in 2 tables) anyways we are currently not facing the duplicate column issue for now after we changed the procedure to point to new table, but we are not sure if it would happen anytime again.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Dec 2025 05:25:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Column-created-in-a-table-appears-in-another-table/m-p/4907861#M64177</guid>
      <dc:creator>ChetanK004</dc:creator>
      <dc:date>2025-12-24T05:25:43Z</dc:date>
    </item>
    <item>
      <title>Re: Column created in a table appears in another table</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Column-created-in-a-table-appears-in-another-table/m-p/4911410#M64251</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1425130"&gt;@ChetanK004&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;We appreciate your efforts and thank you for keeping us informed about the update on this issue. If you encounter any further issues, please do not hesitate to reach out to the community. We also encourage you to continue using the Fabric Community forum for any future assistance.&lt;/P&gt;</description>
      <pubDate>Fri, 02 Jan 2026 07:28:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Column-created-in-a-table-appears-in-another-table/m-p/4911410#M64251</guid>
      <dc:creator>v-priyankata</dc:creator>
      <dc:date>2026-01-02T07:28:20Z</dc:date>
    </item>
  </channel>
</rss>

