I wonder if there may be a way to set up this task to store the data in a single row for each subject after having used a block element.
<block demographics>
/trials = [1=demographics1]
</block>
<surveypage demographics1>
/ caption = "Please answer the following demographic questions"
/ fontstyle = ("Verdana", -16, true, false, false, false, 5, 0)
/ questions = [1=sex; 2=age]
</surveypage>
<dropdown sex>
/ caption = "Sex"
/ options = ("female", "male")
</dropdown>
<textbox age>
/ caption = "Age"
/ mask = positiveinteger
/ range = (7, 110)
</textbox>
I wonder if there is a way to write a data element (or similar) that will do as described above?
/ columns = [subject, dropdown.sex.response, textbox.age.response]
/file = "responses.iqdat"
</data>