Ability to Link Dashboards (Eg. User list dash -> click ID -> user dash for that id)

A hack I have used to accomplish this is to build the list of e.g. users on the overview dashboard as a SQL question. If you then add a field like

SELECT concat('http://Metabase.whatever.com/dashboard/42/userid=', userid) AS link FROM users

You have a link to the detail dashboard if it is dashboard number 42 and it takes a userid as parameter. Admitted it’s ugly with a hard coded link including servername etc. … but hey it does the job :wink:

2 Likes