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
Anonymous
Not applicable

Fill column with SQL Server Function

Hi,

 

for my problem I found this:

https://community.powerbi.com/t5/Desktop/SQL-Functions-in-Power-BI/m-p/235426#M104804

 

But it seems, it is no longer working.

 

As Source I have a SQL table, I only use 2 columns from it.: ordID and oLineID

Next I want to add a custom column: color 

with gets its value from a SQL Server Function with Parameters ordID and oLineID.

 

First Step:

ordIDoLineID
3099841278640
3099851278641
3099871278645


How it should look final like this:

ordIDoLineIDcolor 
3099841278640green
3099851278641blue
3099871278645yellow

 

This is the SQL Server Function:

CREATE FUNCTION MAU_BI.fnGetFarbe
(
@ordID int,
@oLineID int
)
RETURNS nvarchar(max)
AS
BEGIN

DECLARE @strReturn nvarchar(255)

select @strReturn = ( select optDescription
from Product.Options

inner join OrderLineOptions on OrderLineOptions.optID = Product.Options.optID and optoID = 4
inner join OrderLines ol on ol.oLineID = OrderLineOptions.oLineID
where ol.ordID = @ordID and ol.olnID = @oLineID)

RETURN(@strReturn);
END

 

It was working a few years back, so it should still work. I was a shame, the M Source was not included in the original post.

 

 

Sven

1 ACCEPTED SOLUTION
camargos88
Community Champion
Community Champion

Hi @Anonymous ,

 

You can create a query calling this SQL Function and transform it in a Power Query Function. After that just invoke this new power query function in your table passing both parameters.

 

This link can help you:

https://eriksvensen.wordpress.com/2020/04/29/powerquery-using-sql-scalar-value-functions-in-powerquery/



Did I answer your question? Mark my post as a solution!

Proud to be a Super User!



View solution in original post

2 REPLIES 2
camargos88
Community Champion
Community Champion

Hi @Anonymous ,

 

You can create a query calling this SQL Function and transform it in a Power Query Function. After that just invoke this new power query function in your table passing both parameters.

 

This link can help you:

https://eriksvensen.wordpress.com/2020/04/29/powerquery-using-sql-scalar-value-functions-in-powerquery/



Did I answer your question? Mark my post as a solution!

Proud to be a Super User!



Anonymous
Not applicable

All I need to do, was to remove the last step where the function is invoked. Arg........

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.