I'm importing data from Excel into SQL Server through Power Automate. The excel table has many properties such as amount or date that have congruent columns in the SQL Server table. However, any values that are empty in Excel are replaced with an empty string ('') instead of a NULL value. The prior can't be passed into SQL Server even if "Allow Nulls" is checked because they aren't null. How would I go about checking every property in the Excel sheet if it's empty and set it to null if so without creating a condition for each property?