Hello @MH81003
In Power Apps, you can achieve this by using the Lookup function which works by searching your Excel table for a specific record, matching the Dealer ID entered with the corresponding Dealer Name. Here are the steps:
- Upload your Excel file to a location that Power Apps can access. This could be SharePoint, OneDrive, or Power Apps' own data store.
- Connect to the Excel data source in your Power Apps application.
- On the data card for the Dealer Name, you will want to use the Lookup function in the Default property of the text box where you want the Dealer Name to appear. The formula might look something like this:
Lookup(ExcelDataSource, DealerID = TextInput.Text).DealerName
In this formula, ExcelDataSource should be replaced with the actual name of your Excel data source, DealerID should be the column name in your Excel file for the dealer ID, TextInput.Text should be replaced with the actual name of your text box where the dealer ID is entered, and DealerName should be the column name in your Excel file for the dealer name.
Cheers!