Power BI merge query in SSAS Tabular 1400











up vote
0
down vote

favorite












Hello guys,



In Power BI, I'm able to merge two tables easily because you can (even with csv files) add new queries and merge them in two clicks.



What I need is to reproduce the same merge in Tabular 1400. The thing is that the source tables are two CSV files located in different folders. I succeed making the merge in M language before the import.



Here are my tables
enter image description here



enter image description here



And here is the merge oneenter image description here
So, as you can see it is working until there. But once I click on import, there is an error message saying that The name 'Table2' wasn't recognized. Make sure it's spelled correctly



So it must be related to the M language behind the merge but for me it is correct. Here is the M language



let
Source = Table.NestedJoin(Table2,{"Name"},Table1,{"Name"},"NewColumn",JoinKind.LeftOuter),
#"Expanded NewColumn" = Table.ExpandTableColumn(Source, "NewColumn", {"Name", "Age", "Country"}, {"NewColumn.Name", "NewColumn.Age", "NewColumn.Country"}),
#"Removed Columns" = Table.RemoveColumns(#"Expanded NewColumn",{"NewColumn.Name"}),
#"Renamed Columns" = Table.RenameColumns(#"Removed Columns",{{"NewColumn.Age", "Age"}, {"NewColumn.Country", "Country"}}),
#"Changed Type" = Table.TransformColumnTypes(#"Renamed Columns",{{"Age", Int64.Type}})
in
#"Changed Type"



I'm a bit lost actually because for me the M language is good. Any idea how to figure it out ?










share|improve this question


























    up vote
    0
    down vote

    favorite












    Hello guys,



    In Power BI, I'm able to merge two tables easily because you can (even with csv files) add new queries and merge them in two clicks.



    What I need is to reproduce the same merge in Tabular 1400. The thing is that the source tables are two CSV files located in different folders. I succeed making the merge in M language before the import.



    Here are my tables
    enter image description here



    enter image description here



    And here is the merge oneenter image description here
    So, as you can see it is working until there. But once I click on import, there is an error message saying that The name 'Table2' wasn't recognized. Make sure it's spelled correctly



    So it must be related to the M language behind the merge but for me it is correct. Here is the M language



    let
    Source = Table.NestedJoin(Table2,{"Name"},Table1,{"Name"},"NewColumn",JoinKind.LeftOuter),
    #"Expanded NewColumn" = Table.ExpandTableColumn(Source, "NewColumn", {"Name", "Age", "Country"}, {"NewColumn.Name", "NewColumn.Age", "NewColumn.Country"}),
    #"Removed Columns" = Table.RemoveColumns(#"Expanded NewColumn",{"NewColumn.Name"}),
    #"Renamed Columns" = Table.RenameColumns(#"Removed Columns",{{"NewColumn.Age", "Age"}, {"NewColumn.Country", "Country"}}),
    #"Changed Type" = Table.TransformColumnTypes(#"Renamed Columns",{{"Age", Int64.Type}})
    in
    #"Changed Type"



    I'm a bit lost actually because for me the M language is good. Any idea how to figure it out ?










    share|improve this question
























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      Hello guys,



      In Power BI, I'm able to merge two tables easily because you can (even with csv files) add new queries and merge them in two clicks.



      What I need is to reproduce the same merge in Tabular 1400. The thing is that the source tables are two CSV files located in different folders. I succeed making the merge in M language before the import.



      Here are my tables
      enter image description here



      enter image description here



      And here is the merge oneenter image description here
      So, as you can see it is working until there. But once I click on import, there is an error message saying that The name 'Table2' wasn't recognized. Make sure it's spelled correctly



      So it must be related to the M language behind the merge but for me it is correct. Here is the M language



      let
      Source = Table.NestedJoin(Table2,{"Name"},Table1,{"Name"},"NewColumn",JoinKind.LeftOuter),
      #"Expanded NewColumn" = Table.ExpandTableColumn(Source, "NewColumn", {"Name", "Age", "Country"}, {"NewColumn.Name", "NewColumn.Age", "NewColumn.Country"}),
      #"Removed Columns" = Table.RemoveColumns(#"Expanded NewColumn",{"NewColumn.Name"}),
      #"Renamed Columns" = Table.RenameColumns(#"Removed Columns",{{"NewColumn.Age", "Age"}, {"NewColumn.Country", "Country"}}),
      #"Changed Type" = Table.TransformColumnTypes(#"Renamed Columns",{{"Age", Int64.Type}})
      in
      #"Changed Type"



      I'm a bit lost actually because for me the M language is good. Any idea how to figure it out ?










      share|improve this question













      Hello guys,



      In Power BI, I'm able to merge two tables easily because you can (even with csv files) add new queries and merge them in two clicks.



      What I need is to reproduce the same merge in Tabular 1400. The thing is that the source tables are two CSV files located in different folders. I succeed making the merge in M language before the import.



      Here are my tables
      enter image description here



      enter image description here



      And here is the merge oneenter image description here
      So, as you can see it is working until there. But once I click on import, there is an error message saying that The name 'Table2' wasn't recognized. Make sure it's spelled correctly



      So it must be related to the M language behind the merge but for me it is correct. Here is the M language



      let
      Source = Table.NestedJoin(Table2,{"Name"},Table1,{"Name"},"NewColumn",JoinKind.LeftOuter),
      #"Expanded NewColumn" = Table.ExpandTableColumn(Source, "NewColumn", {"Name", "Age", "Country"}, {"NewColumn.Name", "NewColumn.Age", "NewColumn.Country"}),
      #"Removed Columns" = Table.RemoveColumns(#"Expanded NewColumn",{"NewColumn.Name"}),
      #"Renamed Columns" = Table.RenameColumns(#"Removed Columns",{{"NewColumn.Age", "Age"}, {"NewColumn.Country", "Country"}}),
      #"Changed Type" = Table.TransformColumnTypes(#"Renamed Columns",{{"Age", Int64.Type}})
      in
      #"Changed Type"



      I'm a bit lost actually because for me the M language is good. Any idea how to figure it out ?







      merge powerbi tabular m compatibility-level






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 8 at 10:41









      Mathieu Ricour

      203115




      203115
























          1 Answer
          1






          active

          oldest

          votes

















          up vote
          0
          down vote













          If you do not need Table2 in your report, try unchecking Enable load. To achieve this rightclick the Table2 query in the Queries Pane. At least that's where it is in PowerBI.






          share|improve this answer























          • Thanks for the answer. Unfortunately I can't find the enable load button on Tabular, maybe it simply does not exist... Still stuck then
            – Mathieu Ricour
            Nov 8 at 12:55











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














           

          draft saved


          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53206024%2fpower-bi-merge-query-in-ssas-tabular-1400%23new-answer', 'question_page');
          }
          );

          Post as a guest
































          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          0
          down vote













          If you do not need Table2 in your report, try unchecking Enable load. To achieve this rightclick the Table2 query in the Queries Pane. At least that's where it is in PowerBI.






          share|improve this answer























          • Thanks for the answer. Unfortunately I can't find the enable load button on Tabular, maybe it simply does not exist... Still stuck then
            – Mathieu Ricour
            Nov 8 at 12:55















          up vote
          0
          down vote













          If you do not need Table2 in your report, try unchecking Enable load. To achieve this rightclick the Table2 query in the Queries Pane. At least that's where it is in PowerBI.






          share|improve this answer























          • Thanks for the answer. Unfortunately I can't find the enable load button on Tabular, maybe it simply does not exist... Still stuck then
            – Mathieu Ricour
            Nov 8 at 12:55













          up vote
          0
          down vote










          up vote
          0
          down vote









          If you do not need Table2 in your report, try unchecking Enable load. To achieve this rightclick the Table2 query in the Queries Pane. At least that's where it is in PowerBI.






          share|improve this answer














          If you do not need Table2 in your report, try unchecking Enable load. To achieve this rightclick the Table2 query in the Queries Pane. At least that's where it is in PowerBI.







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Nov 8 at 11:46

























          answered Nov 8 at 11:40









          Marco Vos

          1,879149




          1,879149












          • Thanks for the answer. Unfortunately I can't find the enable load button on Tabular, maybe it simply does not exist... Still stuck then
            – Mathieu Ricour
            Nov 8 at 12:55


















          • Thanks for the answer. Unfortunately I can't find the enable load button on Tabular, maybe it simply does not exist... Still stuck then
            – Mathieu Ricour
            Nov 8 at 12:55
















          Thanks for the answer. Unfortunately I can't find the enable load button on Tabular, maybe it simply does not exist... Still stuck then
          – Mathieu Ricour
          Nov 8 at 12:55




          Thanks for the answer. Unfortunately I can't find the enable load button on Tabular, maybe it simply does not exist... Still stuck then
          – Mathieu Ricour
          Nov 8 at 12:55


















           

          draft saved


          draft discarded



















































           


          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53206024%2fpower-bi-merge-query-in-ssas-tabular-1400%23new-answer', 'question_page');
          }
          );

          Post as a guest




















































































          Popular posts from this blog

          Schultheiß

          Verwaltungsgliederung Dänemarks

          Liste der Kulturdenkmale in Wilsdruff