Hi and Thanks
On the first topic i was more thinking about launching a “querry + exls extraccion” project from an excel.xlsm program and then integrate the new data into that excel.xlsm with vba code like:
Sub crearbat()
ruta1 = ThisWorkbook.Path
ruta2 = ruta1 & “\bbdd_prod.xls”
Set fs = CreateObject(“Scripting.FileSystemObject”)
Set a = fs.CreateTextFile(ruta1 & “\extractor.bat”, True)
a.WriteLine param00
a.WriteLine param01
a.WriteLine param2
a.Close
End Sub
Sub extract()
Dim lValDev As Long
ruta1 = ThisWorkbook.Path
ruta10 = ruta1 & “\extractor.bat”
param2 = “extractor.bat”
lValDev2 = ShellExecute(0, “OPEN”, ruta10, param2, “”, 0)
End Sub
OK, now I understand. Thanks for the clarification. EasyMorph projects can be executed from the command line and .bat files. See this help article for more details: https://help.easymorph.com/doku.php?id=command_line
Yes, the free edition doesn’t allow running EasyMorph from the command line. You can request a trial key right in the application, on the Start screen. It will be delivered automatically.