PennController for IBEX › Forums › Support › Group Columns – distribution › Reply To: Group Columns – distribution

okay, sorry. Both links do not work. I have tried now the first suggstion
My study begins with a html (welcome, instructions) two practice trials. Then it comes the part with the embedded csv file and the url works.
PennController.SetCounter();
PennController.Template( “ListeCSV.csv” ,
variable => PennController(
newText(variable.SocStat_text)
.settings.bold()
.settings.color(“blue”)
.settings.center()
.print()
,
newText(variable.Sentence)
.settings.center()
.settings.bold()
.print()
,
newText(“korrekt”, “Wie grammatikalisch korrekt finden Sie diesen Satz?”)
.settings.center()
.print()
,
newScale(“korrekt”, 7)
.settings.center()
.settings.before( newText(“left”, “1 <br /> (trifft gar nicht zu)”) )
.settings.after( newText(“right”, “7 <br /> (trifft voll und ganz zu)”) )
.print()
.settings.log()
.wait()
.remove()
,
getText(“korrekt”)
.remove()
)
.log( “List” , variable.List )
.log( “Block” , variable.Block )
.log( “Item” , variable.Item )
.log ( “expSet” , variable.expSet )
.log ( “grammatically_correct” , variable.grammatically_correct )
.log ( “condition” , variable.condition )
.log ( “WP1_match” , variable.WP1_match )
.log ( “WP2_tense” , variable.WP2_tense )
.log ( “SocStat_context”, variable.SocStat_context )
.log ( “SocStat_contextVers” , variable.SocStat_contextVers )
.log ( “Group” , variable.Group )
);