Unable to execute query onfor excel as database

I am trying to connect excel as database but after connection is established, run query command is failing with ‘too few paramaters’ because my header line starts from row no 3 and first rows are merged and centered with image

@chandresh_agarwal,

Can you the sample excel file and the query you are trying to run?

@chandresh_agarwal

In you query you can specify the start cell you want it to read from as well

Cheers

Can you pls help me with query

Daily_Status_Tracker.xlsx (10.7 KB)
Query - “Update [” +“Daily Status” + “$] SET [Comments] = '” + “Success” + "’ WHERE [Sr No] = " + “1”

Try this add the range this way

Query: UPDATE [Daily Status$A3: ] SET [Comments] = ‘Success’ WHERE [Sr No] = 1

Hope this helps!

Run query: ERROR [42S02] [Microsoft][ODBC Excel Driver] The Microsoft Access database engine could not find the object ‘Daily Status$A2:’. Make sure the object exists and that you spell its name and the path name correctly. If ‘Daily Status$A2:’ is not a local object, check your network connection or contact the server administrator.