Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
My requirement is to call a stored procedure in snowflake from power bi by passing parameters dynamically. The function of the stored procedure is to update the output dataset ('Change Table') with data changes between the current and previous snapshot time.
I am using native query (Query1) to Call stored procedure in Direct mode. e.g. Call schema.Storedproc_name('" & P_Table_Name &"','" & P_Prev_Snap &"', '" & P_Cur_Snap & "')
I am passing 3 parameters to the stored procedure in the Call - Table Name, Current snapshot time, Previous snapshot time. I have created 3 parameters in power bi P_Table_Name, P_Cur_Snap and P_Prev_Snap.
In Manage Parameter, for parameter P_Table_Name, I have given the list of table names in the 'List of Values' under 'Suggested value' dropdown . For parameter P_Cur_Snap, the Type is text, Suggested Values is Any value and Current value is 2024-01-02 06:52:29.652. Similarly defined the parameter P_Prev_Snap - the Type is text, Suggested Values is Any value and Current value is 2024-01-01 11:01:06.644.
In Advanced Editor, I am using 2 Native queries(Query 2 and Query 3) in Import mode to create 2 tables ('CurSnapshot List' and 'PrevSnapshot List') for the values of parameters P_Cur_Snap and P_Prev_Snap.
In Model view, using 'Bind to parameter' option I have bind the parameter P_Cur_Snap to the column CUR_SNAP of table 'CurSnapshot List' and bind the parameter P_Prev_Snap to the column PREV_SNAP of table 'PrevSnapshot List'.
In the Report view I have 2 slicers for these 2 fields CUR_SNAP and PREV_SNAP.
I see that the Call to snowflake stored procedure is successful and the output table is updated with changes between the Current value of current snapshot time and previous snapshot time ( i.e; changes between P_Cur_Snap = 2024-01-02 06:52:29.652 and P_Prev_Snap = 2024-01-01 11:01:06.644).
I have another native query(Query 4) in Direct mode to select the data from the 'Change table' dataset for the user selected CUR_SNAP and PREV_SNAP values. e.g. SELECT * FROM database.schema.table_name WHERE PREV_SNAPSHOT = '" &P_PRV_SNAPSHOT &"' AND CURR_SNAPSHOT = '" &P_CUR_SNAPSHOT &"'.
In Report view, i see that the report shows change data for P_Cur_Snap = 2024-01-02 06:52:29.652 and P_Prev_Snap = 2024-01-01 11:01:06.644.
But when I change the value in any of the slicers CUR_SNAP and PREV_SNAP, the call to SP is not getting triggered and the changed snapshot time is not being passed via parameters to SP. This is working only for the Current values given in the parameters definition but not for dynamic values.
I am not sure if I have missed something here, please help!
Hi @divyashreemekal ,
Based on your description, I found the following document, which I hope will help you.
Dynamic M query parameters in Power BI Desktop - Power BI | Microsoft Learn
Dynamic Parameter is not working with the slicer w... - Power Platform Community (microsoft.com)
If your Current Period does not refer to this, please clarify in a follow-up reply.
Best Regards,
Clara Gong
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Clara,
Thanks for the links. I am following the same steps mentioned the link Dynamic M query parameters in Power BI Desktop - Power BI | Microsoft Learn
But the parameter value does not change dynamically when the slicer value is changed in the report in my case. i am not understanding why.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
72 | |
69 | |
55 | |
36 | |
31 |
User | Count |
---|---|
84 | |
63 | |
63 | |
49 | |
45 |