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
rajatparihar
Frequent Visitor

Calling a parametrized UDF using filter/slicer?

Hi, I have a UDF function (udf_EvaluateAggregatedFormula) as follows and would like to call it using a sql statement in Power BI.

 

However if you see, my UDF has a date parameter (@DataReportingDat@@, ) which should set value from a date slicer. Can it be done?

 

 

dbo.udf_EvaluateAggregatedFormula

(

 SGL.InstitutionGroupCode, --InstitutionGroupCode

@DataReportingDate, --@ReportingPeriod DATETIME,


) EAF

 

 

2 REPLIES 2
v-juanli-msft
Community Support
Community Support

Hi @rajatparihar

Though I'm not quite sure if it can works exactly as you required in Power BI, I would suggest you consider dynamic parameter, it can be used when getting data, applying a filter, ect.

http://biinsight.com/power-bi-desktop-query-parameters-part-1/

https://www.excelguru.ca/blog/2018/05/30/creating-dynamic-parameters-in-power-query/

 

Best Regards

Maggie

 

Actually my doubt is bit different as I want to pass the user defined parameter value to a query and based on that I would like to see the results. Have a look at the following pseudo code that I prepared to expalin my query in better way:

 

You can see that I have declared a static variable @DataReportingDate and would like to use this parameter inside my query in left join and in select statement.

 

Declare @DataReportingDate date = {D'2017-06-30'}  --it should be any single select date that I want to pass to the following query inside left join

SELECT
a.name,
a.address,
a.eircode,
b.employername,
b.salary,
b.ID,
@DataReportingDate as 'Reporting Date'		
FROM TableA a

LEFT OUTER JOIN (select salary, employername, ReportingDate from TableB 
				 where ReportingDate = @DataReportingDate ) b
	ON a.ID = b.ID 

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.

Top Solution Authors