PennController for IBEX › Forums › Support › logging spreadsheet info › Reply To: logging spreadsheet info
September 18, 2019 at 3:54 pm
#4175
Keymaster
Do you have a link to your experiment?
If I adapt your example table to my example code above, the content of the “Class” cell gets recorded:
PennController.ResetPrefix(null);
PennController.AddTable("dummyTable", `Label,Class,Group,Sentence,Sagen,Claim,Question
Rating,VF-1,A,bla,bla,bla,bla
Rating,V2-1,B,bla,bla,bla,bla
Rating,EVF-1,C,bla,bla,bla,bla
Rating,EV2-1,D,bla,bla,bla,bla`);
PennController.Template(
"dummyTable"
,
item => PennController( newButton( item.Sentence ).print().wait() ).log( "Class" , item.Class )
)