Importing multiple pdf files in jmp
I have approx. 300 pdf files each containing data tables I want to import to jmp. I'm trying to loop trough them to open and attach to a new data table but cant even get files to open!
This is what I have tried but doesn't seem to be working.
I'm using JMP 15
Names Default To Here(1);
path = "C:\example folder\";
theFilesList = Files In Directory(path);
For(i = 1, i <= N Items(theFilesList), i
...