How do you envision doing that?
Options that come to mind include:
(1) Have screen for the final report showing the list of questions asked with checkboxes next to each - so you could uncheck the ones you don't want to show (and that would get processed internally by the function that outputs to {ANSWERTABLE}?
(2) Have two functions (available via ExpressionManager):
(a) showAllResponsesExcept(questionList,attributeList,attributeTitleList)
(b) showTheseResponses(questionList,attributeList,attributeTitleList)
where
(a)questionList = pipe-delimited list of question identifiers
(b)attributeList = pipe-delimited list of attributes (like question#, title, text, type - so you can decide what to show)
(c)attributeTitleList = pipe-delimited list of <th> table headers, so can internationalize the report.
This way, you could embed interim reports to the user summarizing responses from prior questions (and/or provide tailored advice).
FYI, I'm working on approach #2 as part of
issue 5103