Hi @JenVitug,
Could you please expand the "List rows present in a table" action within your flow?
Do you use the "List rows present in table" action to retrieve rows from the new file created in your SharePoint library (use the "When a file is created in a folder" trigger to detect)?
Further, could you please show a bit more about your Excel file?
If you use the "List rows present in table" action to retrieve rows from the new file created in your SharePoint library (use the "When a file is created in a folder" trigger to detect), I afraid that there is no way to achieve your needs in Microsoft Flow currently.
Specifying a file dynamically is not supported in the "List rows present in table" action of Excel Online (Business) connector, you could only specify the file through File Browser.
I have made a test and the issue is confirmed on my side. If you could dynamically match Excel file's columns within the other non-Numeric fields of the "Create a new record" action, you could take a try with the following formula to reference the Number column in your Excel file:
item()?['NumberColumnNameOfYourExcelFile']
I have made a test on my side and please take a try with the following workaround:
Note: The Amount column is a Number type field in my CDS entity. on your side, you should type the following formula within the Number field (YTD Actuals field):
int(item()?['YTD Actuals'])
The value you get from your Excel table is text value, you should convert the text value into number value to match the Number field of your CDS Entity as above formula.
More details about using expression in flow actions, please check the following article:
Use expression in flow actions
Best regards,
Kris