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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

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
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!

December 2025 Power BI Update Carousel

Power BI Monthly Update - December 2025

Check out the December 2025 Power BI Holiday Recap!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.