Hi,
I am building a reporting table where I aggregate statistics for different production campaign, I would leave the opportunity to user to add free text descriptive comments, for each campaign.
I tried one way by adding text column "comment" to my data table, where user can add multiple comment at different rows (different moment of the campaign).
I used the tabulate option in my script to generate the stats. I can not find the way to easily add the free text comments in tabulate table (I was thinking concatenating the different comments/character strings into one comment/summary for each campaign)
Scrolling the community, one way might be to create a similar table box, with more flexibility to add an additional row with free text comments? I must admit it starts to be over my scripting skills:-)
working on JMP 16.
my test table looks like that
and the classic tabulate script is here
Tabulate(
Show Control Panel( 0 ),
Add Table(
Column Table( Grouping Columns( :Campaign ID ) ),
Row Table( Analysis Columns( :U.R24, :E401.Run, :LVL.BED.R24 ), Statistics( Mean ) )
),
Local Data Filter(
Add Filter(
columns( :POLY.GRADE ),
Where( :POLY.GRADE == "PPK0132F" ),
Display( :POLY.GRADE, N Items( 15 ) )
)
)
)