You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the issue
I created an M query using Power Query online in a dataflow and generated good code, but when I tried to update the table schema I got this error:
Describe the issue
I created an M query using Power Query online in a dataflow and generated good code, but when I tried to update the table schema I got this error:
The M code generated was this:
let
Source = PowerPlatform.Dataflows([]),
Navigation = Source{[Id = "Workspaces"]}[Data],
#"Navigation 1" = Navigation{[workspaceId = "xxxxxxxxxxxxxxxx"]}[Data],
#"Navigation 2" = #"Navigation 1"{[dataflowId = "xxxxxxxxxxxxxxxxxxxxxx"]}[Data],
#"Navigation 3" = #"Navigation 2"{[entity = "Sales", version = ""]}[Data],
#"Changed column type" = Table.TransformColumnTypes(#"Navigation 3", {{"Unit Price", Currency.Type}, {"Net Price", Currency.Type}, {"Unit Cost", Currency.Type}})
in
#"Changed column type"
By changing the first line to this:
Source = PowerPlatform.Dataflows()
it fixed the issue - removing the square brackets from inside the parenthesis.
** Which version are you currently using? **
Tabular Editor 3, version: 3.8
Tabular Editor 3 edition: Enterprise
To Reproduce
Power BI Service
Steps to reproduce the behavior:
Error shows up.
The text was updated successfully, but these errors were encountered: