Entity Lists are a powerful feature from Power Apps Portals to quickly expose data from Dataverse. But loading a large set of data can lead to a terrible user experience if the page keeps loading for a long period of time.
In this article, I will show a trick on how to basically not load the data until the user has applied a filter to the list.
Data and Entity List setup
For this example, I have the following setup:
- Account table with over 1000 records;
- Web Page showing an Entity List;
- Entity List pointing to the Account table, Page Size = 500 and Metadata Filter enabled on the Account name.
When opening my page, this is taking and average of 9 seconds to render, which can be quite a lot and depending on the internet connection this could be even worse.

Entity List – Metadata Filter
Now it’s time for a hidden trick with regards Metadata Filtering. We can actually pre-inject values to the URL and this will be applied before loading the list itself. The format must be the following:
?mf=0=firstvalue%261=secvalue%262=thirdvalue…
Let’s breakdown and understand the meaning of that:
- ? this just separates the main URL from its parameters, basic web stuff here;
- mf= means the Metadata Filter, and whatever follows is the value of the mf parameter;
- 0 means the index of the filter;
- =firstvalue assigns the first filter value to “firstvalue”;
- optionally if you have multiple filter attributes:
- %26 this is the ASCII code for the char &, so basically it is appending multiple parameters;
- 1 means the index of the second filter;
- =secvalue assigns the second filter value to “secvalue”;
- and you can keep going if you want…..
In my example, I only have only filter, so let’s see what happens when I try to load the page by adding the parameter in the url:

Power Apps Portals is reading my URL and automatically assigning a value to the first filter, all this happens at the server-side level and the page is loaded super quick (less than a second).
That’s great, but how to add the custom parameters by default? For that you can check my previous post where I extend the Web Link table to take additional URL parameters: https://oliverrodrigues365.com/2021/03/01/power-apps-portals-adding-parameters-in-menu-links/
This is what my Web Link looks:

I decided to generate a GUID value as I would never have an account with that name, but you could use anything you want here.
Clear the value in Metadata Filter
We are almost there, final step is to clear the value that is present in the Filter on the load of the page, this can be achieved by the following JavaScript/jQuery code:
$(document).ready(function(){
ClearFilter();
});
function ClearFilter(){
var params = new URLSearchParams(window.location.search);
var mf = params.get("mf"); // metadata filters
if(mf === "0=0eaf2b2b-be3a-4c3c-9e52-1c03431c0d9f"){
$("#0").val("");
var listAccounts = $(".entitylist.entity-grid").eq(0);
listAccounts.on("loaded", function () {
listAccounts.find(".view-empty.message").text("Please enter a filter criteria to find an Account record!")
});
}
};
Let’s explore what the code is doing:
- Retrieve the URL Parameters;
- Retrieve the mf parameter;
- Check the value for my 0 indexed filter. This is the same value as entered previously in my Web Link – note that you could use anything here, as long as they match;
- If it’s a match, clear the value for the element with id 0 – by default, metadata filters are rendered being assigned the id the same as the filter index;
- Via Entity List, we can setup the message for empty list, but not for “record not found”. This would be possible to change via Content Snippet, but that would be applied to every Entity List in the Portals. For this reason I am changing the message in my list via JavaScript to indicate that the user should enter a filter criteria.
Conclusion
Loading a large set of data is a very common scenario and with very little code we can enhance the user experience by forcing them to use the filter.
Have you every solved this using a different approach? Please post on the comments the strategy you took.