Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
Anonymous
Not applicable

Reference query not refreshing

I am using Power BI to invoke a stored procedure in Snowflake and display the data. The steps followed are below:

-Created Parameters

-Created Base query calling the stored procedure by passing the parameters from the previous step.

-Created another query to reference the base query and display the data

The entire thing is working as expected in Power BI Desktop. When I publish the report in Power BI Service I am able to do the following:

-Pass Parameters

-Invoke the Base query calling the stored procedure

But the third step which used to display the data is not working. Power BI is not sending the query to the database and refreshing the report.

 

The below is the Base query:

let
Source = Odbc.Query("dsn=SFDB", "call SP (P1,P2,P3)")
in
Output

 

I am using the below query in reference the base query and display the data:

Table1
let
Source = SPQuery,
Output = Odbc.Query("dsn=SFDB", "SELECT C1,C2,C3")
in
Output 

 

Can you tell me if its possible to call reference queries in Power BI Service. Is there any settings to be made in Power BI Service or Desktop to make this run correctly?

I am using a Personal Gateway and ODBC connection. 

1 REPLY 1
nandukrishnavs
Super User
Super User

@Anonymous 

 

Make sure Include In Report Refresh and Enable Load are enabled.

Capture.JPG

 

  • Include In Report Refresh means the query is automatically refreshed when you press the "Refresh" button on the ribbon.
  • Enable Load means query results are available for report builder. Otherwise, you may use it in your other queries (for example to merge data), but it is not shown in the report builder.

Regards,
Nandu Krishna

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

Power BI Carousel June 2024

Power BI Monthly Update - June 2024

Check out the June 2024 Power BI update to learn about new features.

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

Top Solution Authors