findAnswersByForm()
returns individual form answers for a specific question, scoped to a specific form, optionally filtered by date range this is useful when the same question name exists on multiple forms and you need to disambiguate — or when you want to analyze answers from one particular form only syntax findanswersbyform(question, form\[, from]\[, until]) parameters parameter type description question string docid\ ujw2aqaktel5uuklup73s name or id of the question/field to retrieve answers for form string docid\ ujw2aqaktel5uuklup73s name or id of the form from timestamp docid\ j1ufztc3 yprdi3ucin3u starting point of the date range to traverse (inclusive) until timestamp docid\ j1ufztc3 yprdi3ucin3u ending point of the date range to traverse (exclusive) return type list docid\ xwh cukhj9waqaefb7h71 < formanswer docid\ pjyhwzhyk83aoscqv k6l > examples findanswersbyform('reviewscore', 'manager review', ' 365d') mean{answervalue} returns the average reviewscore answer submitted via the manager review form in the past year findanswersbyform('ooorating', '1 1 notes', intervalfrom, intervaluntil) groupby{submitperson} mean{answervalue} in a dashboard, breaks down average 1 1 self ratings by person, scoped to the 1 1 notes form only note if the question is only used on one form, findanswers() and findanswersbyform() will produce the same result use findanswersbyform() when disambiguation is needed
