Skip to main content
Solved

Interviewer Reporting

  • August 27, 2024
  • 2 replies
  • 61 views

  • Participating Frequently

Has anyone found or created a report that can produce all the interviewers involved per req/per candidate? This is an important data point for our organization that our old system was able to capture and report out.

Best answer by dkreiger

@kfayer7 - 

This should give you the results (do go through the comments in the query to modify date range):

SELECT
feedback_template_id,
feedback_template_name,
feedback_type,
id,
requester_email,
requester_name,
reviewer_email,
reviewer_name,
profile_id,
position_id,
feedback.question_id,
feedback.label,
feedback.answer,
feedback.other_option,
feedback.comment
FROM
***COMPANY***_profile_feedback fb, fb.feedback_json.feedback as feedback AT index

where
-- We are filtering for only those feedbacks which have been submitted using the condition below
status = 'SUBMITTED'

and feedback_type IN ('quick_feedback','interview_feedback')

-- Change the feedback submitted date here
and created_at >= '2024-01-01'

Please let me know if you have further questions. 

2 replies

dkreiger
Community Manager
  • Community Manager
  • Answer
  • October 14, 2024

@kfayer7 - 

This should give you the results (do go through the comments in the query to modify date range):

SELECT
feedback_template_id,
feedback_template_name,
feedback_type,
id,
requester_email,
requester_name,
reviewer_email,
reviewer_name,
profile_id,
position_id,
feedback.question_id,
feedback.label,
feedback.answer,
feedback.other_option,
feedback.comment
FROM
***COMPANY***_profile_feedback fb, fb.feedback_json.feedback as feedback AT index

where
-- We are filtering for only those feedbacks which have been submitted using the condition below
status = 'SUBMITTED'

and feedback_type IN ('quick_feedback','interview_feedback')

-- Change the feedback submitted date here
and created_at >= '2024-01-01'

Please let me know if you have further questions. 


dkreiger
Community Manager
  • Community Manager
  • October 23, 2024

@kfayer7  was this helpful?