What goes in a voice of customer overview dashboard?
A voice of customer overview combines the scores (NPS, CSAT), the requests (feature feedback and votes), and the response behavior (are customers heard, and told when things ship?) into one executive view. Its value comes from joining sources — survey tools, feedback boards, and support — on shared account and segment fields.
Which cards belong on this dashboard?
- Current NPS with response volume
- Current CSAT with response volume
- Feedback items received per week by source
- Top feature requests by vote velocity
- Feedback volume by product area and theme
- Requests shipped last quarter
- Close-the-loop rate on shipped requests
- Feedback coverage: share of active accounts heard from
What data does this dashboard need?
- NPS and CSAT responses with score, timestamp, and segment
- Feedback items with status, product area, source, and created date
- Votes at vote grain with voter company or account
- Status-change history (or weekly snapshots) for shipped and closed items
- Account dimension with segment and revenue for weighting
How do you build it?
- Sync the source tools into a database and retain raw IDs, timestamps, statuses, and segment fields.
- Build modeled tables at the grain this dashboard requires.
- Create one saved question per card and certify the shared models and definitions.
- Add dashboard filters for Date range, product area, segment, source, status.
- Show refresh time, and exclude internal and test activity from every headline card.
Example card SQL
SELECT
date_trunc('week', created_at) AS week,
source,
COUNT(*) AS feedback_items
FROM feedback_items
WHERE created_at >= CURRENT_DATE - INTERVAL '180 days'
GROUP BY 1, 2
ORDER BY 1, 2;