findResponsesBySubmitPerson()
returns form responses for a specific form where the submitter (the person who filled out the form) matches a given person, optionally filtered by date range useful when you want to see all form submissions made by a particular employee — for example, all shoutouts a person has sent, or all self reviews they've submitted syntax findresponsesbysubmitperson(form, submitperson\[, from]\[, until]) parameters parameter type description form string docid\ ujw2aqaktel5uuklup73s name or id of the form submitperson person the person who submitted the form responses 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 < formresponse docid\ lihl9i6dr0einbnndg2ec > examples findresponsesbysubmitperson('shoutout', person, ' 90d') count() counts the number of shoutouts the current person has sent in the past 90 days findresponsesbysubmitperson('1 1 notes', person, intervalfrom, intervaluntil) count() in a dashboard, returns the number of 1 1 notes the current person has submitted over the dashboard's time interval
