Hi. Asking for your help on how to modify the expression below. I have a date field in Excel that has a default text value but the parallel column of that field in SharePoint is a date data type column. I want my flow to pass if the date field is blank or did not change the default text value and returns blank in SharePoint. In short, whether the field is blank or did not change the default text value, the flow will return blank if no date was selected in the dropdown of the field in Excel and avoid the error below in Create item action. The column in SharePoint is set as date data type.

Here's the current expression:
if(contains(items('Apply_to_each_2')?['Resources Assigned Date'], '#VALUE!'),
null, items('Apply_to_each_2')?['Resources Assigned Date'])
Thank you very much for your help.