Forum Discussion
Parameterize sql query programatically
I am looking for a proper API code where programatically I can accept a value from an existing text or xls file and input it in the existing query in the PBIT file and create my data visualization
I know the way how to do this porcess manually but I wanted to automate the whole process.
Are you using Direct Query? If not, do you need to use the template?
In imported mode you can reference a text file in the Query Editor, so even though it's the same query from PowerBI perspective you can effectively use it as a parameter
- sprasad7 years ago
Helper II
Let me explain it better.
1. I have a PBIT file which contains a query. This PBIT file is created using the Standalone Power BI Desktop. This query fetches the records from the SQL Server table based on the ProductVersion.
2. ProductVersion is now the parameterized field for me in the query and the input to the ProductVersion will change whenever needed. The query is like "Select * from ProductData where ProductVersion = '"&ProductVersion&"'
3. Once I invoke the PBIT file I will get the below dialog.
4. In the ProductVersion I can manualy input the value as 1001 and click Load and the data/visualization gets loaded.
5. I am using the data Connectivity mode as "Import".
My requirement:
In another C# program I need to read the SQL Server tables and check for the version no '1001' and store it in a variable. I can do this.
1. Using Power BI APIs or any other process/technique I need to pass the Value '1001 from the variable silently to the Power BI query mentioned in Step 2. I am looking for help or idea on how to achieve this.
All this I need to do in the Power BI Desktop only.
- sprasad7 years ago
Helper II
Any clue or solution for the above?