Simple Insert Function (Power Query)

James02

Board Regular
Joined
Nov 6, 2014
Messages
108
Gentlemen,

I'm trying to create a simple function in Power Query to insert data into SQL. Since I want to keep it simple, at first, I am testing it by invoking it manually. I have a test table FORD_MarketHistoryTEST that has a single varchar column named TKR. I am using an account that has insert privileges for that table.

Here is the function that I wrote.

Code:
let
  InsertFunction = (tkr as text) =>
			Sql.Database(
			"SQLSERVER",
			"MYDB",
			[Query="INSERT INTO FORD_MarketHistoryTEST VALUES("&tkr&")"])
in
    InsertFunction


When I click "Invoke" and the menu pops up to put in my parameter, I insert a fake ticker (ex. TST) but I receive an error that TST is an invalid column name.

I am confused as I am passing my parameter not the column name. I cannot seem to figure out if this is just a syntax error in my query statement or if it is the way I wrote the function to use the parameter in the query statement.

Any help would be greatly appreciated!!!
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number

Forum statistics

Threads
1,214,516
Messages
6,119,976
Members
448,934
Latest member
audette89

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top