Looks like the issue is to do with the form modes in Power Apps.
Here are a few things to check and try:
Data Source Connection: Ensure that your Excel file is correctly connected as a data source in Power Apps. Sometimes, reconnecting the data source can resolve issues.
Form Mode Behaviour:
FormMode.New: This mode is used to create new records. It won’t display existing records from your Excel file, which is why you only see labels.
FormMode.Edit: This mode should display existing records for editing. If you see nothing, it might be due to the Item property of the form not being set correctly.
Item Property: For FormMode.Edit, the Item property needs to be set to the record you want to edit.
For example:
EditForm1.Item = Gallery1.Selected
Ensure that the Item property is pointing to a valid record from your data source.
Form Fields: Check if the fields in your form are correctly bound to the columns in your Excel table. Sometimes, fields might not be automatically bound, especially if the table structure changes.
Data Cards Visibility: Make sure that the data cards within the form are set to visible. Sometimes, data cards might be hidden due to conditional formatting or visibility settings.
Error Messages: Look for any error messages in Power Apps that might give more insight into what’s going wrong. These can often point you in the right direction.
If these steps don’t resolve the issue, you might want to try creating a new form from scratch and see if the problem persists. This can sometimes help identify if there’s a specific configuration causing the issue.