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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Bibek
Regular Visitor

Parameters in data import from sql server

Hi,
How to pass user inputs as parameters during data import via stored procedure from sql server?
3 REPLIES 3
spuder
Resolver IV
Resolver IV

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

 

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.