Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
Check it out now!Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
Hi
I am stuck with the following error
Formula.Firewall: Query 'Query1' (step 'Source') references other queries or steps, so it may not directly access a data source. Please rebuild this data combination.
my M code is below please help
Thanks Z
let
Criteria01 = DateT,
Source = Odbc.Query("dsn=Snowflake Dev", "select top 10 *#(lf)#(lf)From#(lf)dw_dss.TXN_TAX#(lf)where txn_dte = '"&DateT&"'")
in
Source
Solved! Go to Solution.
You need to give DateT and your Snowflake data source the same level of permissions in data source settings. Power QUery is preventing you from sending confidential data from one source to another. See this article for a deep dive.
DAX is for Analysis. Power Query is for Data Modeling
Proud to be a Super User!
MCSA: BI ReportingYou need to give DateT and your Snowflake data source the same level of permissions in data source settings. Power QUery is preventing you from sending confidential data from one source to another. See this article for a deep dive.
DAX is for Analysis. Power Query is for Data Modeling
Proud to be a Super User!
MCSA: BI ReportingThanks for your help,
I just combined two queries and all is good.
Z