Wenn ich diesen Snippet ergänze, dann funktioniert zwar der ZG wieder, jedoch hab ich in meinen Daten dann jeweils für alle 12 ZG´s wild etwas eingetragen obwohl eine Person ja nur einem ZG zugeordnet wird:
// Define the range of identifiers
$identifiers = ['ZG01', 'ZG02', 'ZG03', 'ZG04', 'ZG05', 'ZG06', 'ZG07', 'ZG08', 'ZG09', 'ZG10', 'ZG11', 'ZG12'];
// Loop through each identifier and perform the operations
foreach ($identifiers as $id) {
question($id); // Call the question function with the current identifier
$pages = valueList($id, NULL, 'label'); // Retrieve the value list for the current identifier
setPageOrder($pages, 'posttest'); // Set the page order for the retrieved pages
}