The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi community,
I’m looking to change the source of an already built report from dataflow to server.
I tried on settings > Option but it just won’t let me change.
Can anyone help me on advanced query?
let
Source = Sql.Database("ServerName", "DataBaseName"),
dbo_V_Table name = Source{[Schema="dbo",Item="TableName "]}[Data]
in
dbo_V_Table
“
let
Source = PowerBI.Dataflows([]),
#" workspaceIdNumber= Source{[workspaceId=" workspaceIdNumber "]}[Data],
#" dataflowIdNumber = #" workspaceIdNumber "{[dataflowId=" dataflowIdNumber "]}[Data],
Table1 = #" dataflowIdNumber "{[entity="Table"]}[Data],
#"Filtered Rows" = Table.SelectRows(Table1, each true),
….
In
#"Filtered Rows3"
Solved! Go to Solution.
Thank you @Anonymous but I have already solved the issue. I have to change "Table1" to "dbo_table".
Thank you @Anonymous but I have already solved the issue. I have to change "Table1" to "dbo_table".