Forum Discussion
rickscr
8 years agoRegular Visitor
Change query source with a parameter
I'm trying to change the data source of a query using a parameter, but I can't figure out the correct syntax. Here's my query: let
Source = OleDb.DataSource("Provider=Microsoft.ACE.OLEDB.12.0...
- Anonymous8 years ago
rickscr,
Change your code to the following:let Source = OleDb.DataSource("Provider=Microsoft.ACE.OLEDB.12.0;Data Source="&FolderPath&";extended properties=dBASE IV", [Query="select * from [JunctOut.dbf]"]) in Source
Regards,
Lydia
Anonymous
8 years agoNot applicable
rickscr,
Change your code to the following:
let
Source = OleDb.DataSource("Provider=Microsoft.ACE.OLEDB.12.0;Data Source="&FolderPath&";extended properties=dBASE IV", [Query="select * from [JunctOut.dbf]"])
in
Source
Regards,
Lydia
rickscr
8 years agoRegular Visitor
Perfect! Thanks!