Names Default To Here( 1 );
dtPareto = Data Table( "Pareto_table" );
dtDate = Data Table( "Date_table" );
// It appears that your Date column is a character column,
// not a JMP Date column. Therefore the following will
// work
For Each Row(
Try(
Column( dtPareto, Char( dtDate:Rank ) ) << set name( dtDate:date )
)
);
// If the Date column is a JMP Date column the set name() message would
// have to be modified to the time format you want to use for the name
// something like
// << set name( format( dtDate:date, "m/d/y"))
This is untested code, but it should work
Jim