Is it possible to save a data Table with Images to Excel such that the images get saved?
Unfortunately, the default mode is that the image is saved as a Char of a Blob:
The Background:
The command Make Into Data Table in GraphBuilder is very useful - it generates a new data table with all the subplots of the GraphBuilder platform
Actually amazing!
But if I want to share the table with some colleagues, is it possible to save this table (and the images as such) as an Excel ?
Names Default to Here(1);
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
gb = dt << Graph Builder(
Variables( X( :weight ), Y( :height ), Group X( :age ), Group Y( :sex ) ),
Elements( Points( X, Y, Legend( 11 ) ), Smoother( X, Y, Legend( 12 ) ) )
);
summary = gb << make into data table();
summary << save("C:\temp\test.xlsx")