Tom - not sure how your microflow is structured, but if you created the conditional code in the exclusive split, you won't be able to reference that value elsewhere in your microflow. To be able to reference the results of that logic throughout the microflow, create a microflow variable prior to the exclusive split - put the results of the logic you describe above into that variable and use the value of that variable in the exclusive split. The variable your created will be accessible throughout the microflow.
Hope that helps.
Mike
Mike - I created a microflow variable called 'questionA' with type integer before the exclusive split. But when making an exclusive split i cannot recall the created variable (only parameters are passing through the microflow and not the created variable). This seems very weird to me. It looks like the microflow does not count the created variable as a variable? But when trying to create another variable with the same name it says the variable already exists.
Nevertheless it worked out by using a exclusive split on the enumeration values instead of creating the integer values and then execute an exclusive split.
Thanks for your help,