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.


Discover more from Arun Potti's Power Platform blog

Subscribe to get the latest posts sent to your email.

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.

Leave a Reply to Michael WilsonCancel reply