I have created a Power Automate flow for my Power App to export all values based on the SLT_Name. I want the users to be able to filter the records by partially entering the SLT_Owner's name.
SLT_Owner is of type person.

ExportRows.Run("substringof('"& SLT_Owner_Filter_txt.Text &"',SLT_Owner/DisplayName)",User().Email);
This returns zero results. But it works when I say SLT_Owner/DisplayName eq '[Name]'
SharePoint person or group columns has
Titleproperty and notDisplayName, while working with filter queries of "Get items" action in Power Automate.So, try using query in this format:
REST API example:
Where
PersonColumnis an internal name of your column in SharePoint list. You can get the internal name of your SharePoint list columns by following this article: How to find the Internal name of columns in SharePoint Online?