<?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 Disconnect source but keep the table in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Disconnect-source-but-keep-the-table/m-p/1040074#M23238</link>
    <description>&lt;P&gt;Hello:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have an issue where I have a xls sheet that I am connecting to. But this xls is on my desktop and I dont want it connected. I just want a table in PBI that is stand alone.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Power Query&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;let&lt;BR /&gt;Source = Excel.Workbook(File.Contents("\\abc\abc\Desktop\Copy of Acc.xlsx"), null, true),&lt;BR /&gt;Sheet1_Sheet = Source{[Item="Sheet1",Kind="Sheet"]}[Data],&lt;BR /&gt;#"Promoted Headers" = Table.PromoteHeaders(Sheet1_Sheet, [PromoteAllScalars=true]),&lt;BR /&gt;#"Changed Type" = Table.TransformColumnTypes(#"Promoted Headers",{{"Cust_PrefStore", type text}, {"Nbr of New Loyalty Customers", 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;------------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I dont want it linked. ("\\abc\abc\Desktop\Copy of Acc.xlsx"). Is this possible&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 21 Apr 2020 19:00:03 GMT</pubDate>
    <dc:creator>samnaw</dc:creator>
    <dc:date>2020-04-21T19:00:03Z</dc:date>
    <item>
      <title>Disconnect source but keep the table</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Disconnect-source-but-keep-the-table/m-p/1040074#M23238</link>
      <description>&lt;P&gt;Hello:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have an issue where I have a xls sheet that I am connecting to. But this xls is on my desktop and I dont want it connected. I just want a table in PBI that is stand alone.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Power Query&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;let&lt;BR /&gt;Source = Excel.Workbook(File.Contents("\\abc\abc\Desktop\Copy of Acc.xlsx"), null, true),&lt;BR /&gt;Sheet1_Sheet = Source{[Item="Sheet1",Kind="Sheet"]}[Data],&lt;BR /&gt;#"Promoted Headers" = Table.PromoteHeaders(Sheet1_Sheet, [PromoteAllScalars=true]),&lt;BR /&gt;#"Changed Type" = Table.TransformColumnTypes(#"Promoted Headers",{{"Cust_PrefStore", type text}, {"Nbr of New Loyalty Customers", 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;------------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I dont want it linked. ("\\abc\abc\Desktop\Copy of Acc.xlsx"). Is this possible&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Apr 2020 19:00:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Disconnect-source-but-keep-the-table/m-p/1040074#M23238</guid>
      <dc:creator>samnaw</dc:creator>
      <dc:date>2020-04-21T19:00:03Z</dc:date>
    </item>
    <item>
      <title>Re: Disconnect source but keep the table</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Disconnect-source-but-keep-the-table/m-p/1040537#M23244</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/214147"&gt;@samnaw&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You may use 'Enter data' to create a table, copy the content from excel and paste the content to the table.&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("{encrypted string}", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type text) meta [Serialized.Text = true]) in type table [Project = _t, StartTime = _t, EndTime = _t, Labor = _t, Note = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"Project", type text}, {"StartTime", type datetime}, {"EndTime", type datetime}, {"Labor", type number}, {"Note", type text}})
in
    #"Changed Type"&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;</description>
      <pubDate>Wed, 22 Apr 2020 02:04:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Disconnect-source-but-keep-the-table/m-p/1040537#M23244</guid>
      <dc:creator>michaelx2</dc:creator>
      <dc:date>2020-04-22T02:04:39Z</dc:date>
    </item>
    <item>
      <title>Re: Disconnect source but keep the table</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Disconnect-source-but-keep-the-table/m-p/4393715#M59320</link>
      <description>&lt;P&gt;That won't work unless you have fewer than 3000 cells to upload&lt;/P&gt;</description>
      <pubDate>Tue, 04 Feb 2025 07:32:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Disconnect-source-but-keep-the-table/m-p/4393715#M59320</guid>
      <dc:creator>Mycall65</dc:creator>
      <dc:date>2025-02-04T07:32:44Z</dc:date>
    </item>
  </channel>
</rss>

