Logging - Custom Form with choice of multiple button widgets
I am trying to implement a multi-item questionnaire, using a loop and custom form with 5 buttons that participants can press to choose the appropriate response. How would I amend the following to best log the response for each questionnaire item? Thanks!
set timeout infinite set spacing 10 set rows "2;4;1" set only_render no set margins "50;50;50;50" set cols "1;1;1;1;1" set _theme gray widget 2 0 1 1 label text="[panas_item]" widget 0 1 1 1 button text="very slightly or not at all" widget 1 1 1 1 button text="a little" widget 2 1 1 1 button text="moderately" widget 3 1 1 1 button text="quite a bit" widget 4 1 1 1 button text="extremely"
Comments
Hi Kezzo,

I think implementing a logger item after the form_base would work well:
Perhaps it is also useful to recode the answers immediately into numbers, since dealing with a full sentence is not very handy in analyses, an example in the attachment
Hope this helps,
This is great thank you! I had added a logger previously but for some reason it wasn't picking these up - so I deleted it, put a new one in and it seems to be working now!