How to get Dashboard GUID in CRM 2013

If you are Using CRM Onpremises, you can use the below query to get Dashboard Guid by Dashboard Name,

SELECT
FORMID [Dashboard GUID],
NAME [Dashboard Name] 
FROM 
FILTEREDSYSTEMFORM
WHERE NAME LIKE '<Provide Dashboard name here>'
and 
TYPENAME = 'Dashboard'

I think it will help you 🙂

Please comment on this post.

Advertisement

One thought on “How to get Dashboard GUID in CRM 2013

  1. This was very helpful! I was trying to find a User Dashboard as well, which I found in the UserForm view (with an ObjectTypeCode of ‘0’). Oddly, there is no filtered version of the UserForm view.

    Like

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.