Forum Discussion
Change filter in SQL easily
Hi, I extract data by SQL from ODBC. This is something like financial data that filtering by department number, extracting monthly expenses. I filter in SQL by using WHERE T1.DEPT = 'A00' (assume A00 is department number).
Due to the data is quite huge, I only extract the expenses for a few departments each time. When want to change the filter, I will need to open up the 'change data source' to edit SQL Query. Is there any way or any button to help in changing the filter query where I don't need to open the source each time to change query but can change the filter in a field, as I only want to change department number filter in SQL each time
- Anonymous6 years ago
Yes you can add a parameter, right click somewhere on your query viewer and choose new Parameter:
as Current value you can put 'A00' (without the quotes)
now you can use this parameter in your sql query, something like this:
= Sql.Database(".", "AdventureWorks2016", [Query="select AddressID, City from Person.Address where City = '"& param & "'"]) Hi Anonymous ,
It seems that you want to use parameter in power query, right? If so, you could refer to Pass-parameter-to-SQL-Queries-statement-using-Power-BI and power-bi-introduction-working-with-parameters-in-power-bi-desktop-part-4/ for details.
Best Regards,
Zoe ZhiIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
2 Replies
- AnonymousNot applicable
Yes you can add a parameter, right click somewhere on your query viewer and choose new Parameter:
as Current value you can put 'A00' (without the quotes)
now you can use this parameter in your sql query, something like this:
= Sql.Database(".", "AdventureWorks2016", [Query="select AddressID, City from Person.Address where City = '"& param & "'"]) - daxCommunity Support
Hi Anonymous ,
It seems that you want to use parameter in power query, right? If so, you could refer to Pass-parameter-to-SQL-Queries-statement-using-Power-BI and power-bi-introduction-working-with-parameters-in-power-bi-desktop-part-4/ for details.
Best Regards,
Zoe ZhiIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.