we have several Test components grouped. I'd like to do some parameter validation at the beginning and skip the component altogether when certain conditions are met. I wanted to use ExitComponent for this, however I figured this does not only leave the component but the whole group.
I really do not want to use extensive if-else statement ranging over my whole component, which is the only solution I can see now.
Example:
'Skip component if value is empty
if Parameter("Par1) = "" Then
'Cannot use ExitComponent as I do not want to leave the whole component group
?????
endif
'Start processing data in the component
Does anyone have an idea?