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
And here is the merge one
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
add a comment |
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
And here is the merge one
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
add a comment |
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
And here is the merge one
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
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
And here is the merge one
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
merge powerbi tabular m compatibility-level
asked Nov 8 at 10:41
Mathieu Ricour
203115
203115
add a comment |
add a comment |
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.
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
add a comment |
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.
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
add a comment |
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.
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
add a comment |
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.
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.
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
add a comment |
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
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password