Hi,
I've connected my PowerApp to a current PowerBI data source which has a large amount of data on it. On the PowerApp I have 2 fields that are pulling from it: Agency Code & Agency Name. The user types agency code and it autofills the agency name based on a lookup formula from the PowerBI data source. The issue I'm having is that it's not searching for all of the rows in that datasource. It's only pulling a small portion of that data so when the user searches for an agency code that's far along the list, it won't find a match to populate the agency name.
The formula I'm using to populate Agency Name is :
If(Len(AgencyCodeBox.Text) = 6,LookUp(PowerBIIntegration.Data, 'Transaction Agency Code' = AgencyCodeBox.Text, 'Transaction Agency Name'),"Agency Name")
Does anyone have an idea how to overcome this limitation?
Thanks!