Copying PNG images from JMP file to Excel
I am trying to copy the data from JMP file into Excel. Here is my script:When I run the script the data get copied into the Excel but when I open the excel file it shows some garbage value Can someone help me with this? dt = Open( "C:\Jay\JMP\JMP data\Images.jmp" );
OutputFolder = "C:\Jay\JMP\JMP data\Test.xlsx";
ColNames = dt << Get Column Names("String");
DesColumnsList = {"pics"};
...
for(i
vince_faller