Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Building Actionable Tableau Dashboards
00:00
5 left

Building Actionable Tableau Dashboards

MediumSQL · PostgreSQL

Problem

Describe a time you built a complex Tableau dashboard from scratch; how did you ensure the end-user could derive actionable insights from it?

Using the supplied Tableau dashboard data, write a SQL query that identifies dashboards with sufficient usage but an actionable insight rate below 50%.

Output

  1. One row per qualifying dashboard with dashboard_id, dashboard_name, owner_team, total_views, actionable_views, action_rate, and latest_view_date.
  2. Include dashboards with at least two views and an action rate below 0.50. Order by action_rate ascending, total_views descending, and dashboard_id ascending.

Schema

tableau_dashboards
ColumnTypeDescription
dashboard_idPKINTUnique dashboard identifier
dashboard_nameVARCHAR(120)Published Tableau dashboard name
owner_teamVARCHAR(80)Team responsible for the dashboard
dashboard_sessions
ColumnTypeDescription
session_idPKINTUnique dashboard viewing session
dashboard_idINTDashboard viewed during the session
user_idVARCHAR(40)Identifier for the dashboard viewer
viewed_atDATEDate of the dashboard view
insight_actionBOOLEANWhether the viewer performed a tracked insight action
action_typeVARCHAR(40)Type of tracked action, when applicable
Tablestableau_dashboardsdashboard_sessions
Interviewer

Your question is Building Actionable Tableau Dashboards. Start with the requirements and the two tables in the Question tab.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.
CodePostgreSQL
You need to log in / sign up to run or submit.Ln 1
Run your query to see results here.