Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
You can set a parameter in power query.
let
sqlStatement = "
select *
from Transactions
where CustomerID = " & CustomerID //CustomerID is the name of the parameter
,
Source= Sql.Database("sqlserver","database",[Query=sqlStatement])
in
Source
The parameter can be changed by the user in power bi "edit parameter"
Hi @spuder
Thanks for the reply
This is the query which I'm using:
DECLARE @return_value int
EXEC @return_value = [dbo].[Stored Procedure] @startdate = &start_date , @enddate = &end_date
SELECT 'Return Value' = @return_value
It throws error saying Incorrect syntax near &"
I need to take the dates as input from the user when opening the report
Hi @Bibek
I guess there is a little misunderstanding. If you want to execute sql Code (as String) in Power BI you have to insert it into M-Language Code.
And then you do not use SQL Variables, but M-Language Variables.
M Code would be:
let
source = Sql.Database("server","database",[Query = select * from Table1 where Columnvalue= " & NAME_OF_PARAMETER])
in
source
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 42 | |
| 37 | |
| 34 | |
| 21 | |
| 16 |
| User | Count |
|---|---|
| 65 | |
| 62 | |
| 31 | |
| 26 | |
| 25 |