Model-driven apps in Power Apps allow users to create dashboards that display key data from different entities. By default, dashboards do not provide an easy way to display Notes (Annotations). However, using a combination of dashboard customization and XrmToolBox, you can modify a dashboard to include a list of Notes. This article provides a step-by-step guide to achieving this.
Note: If you don’t have access to use XrmToolBox, you can also update this FormXml by creating a new unmanaged solution and adding in just the dashboard you created earlier. Then export and unzip the solution, you will find the FormXml within the customizations.xml file. Perform the updates as described in the next step, then re-zip all the files and reimport the solution.
<label description="Accounts" languagecode="1033" />
to:
<label description="Notes" languagecode="1033" />
<TargetEntityType>account</TargetEntityType>
to:
<TargetEntityType>annotation</TargetEntityType>
<ViewId>{e7b7272b-dcee-ef11-be21-00224804c479}</ViewId>
By following these steps, you have successfully modified a Model-Driven App Dashboard to display Notes (Annotations) using XrmToolBox. This method allows for greater customization of dashboards to meet business requirements.
Original Post http://www.richardawilson.com/2025/02/how-to-show-notes-annotations-on-model.html