Hi all,
I'm try to import a lot of records from a Excel table to Dataverse. Some field I need to import to a currency column. Because my Excel have in one of the currency columns ' . ' as delimiter. Because dataverse is not accept that in my environment I add this expression to my flow:
replace(items('Apply_to_each_|_Create_Project_Activities')?['As Sold Budget Amount'],'.',',')
Good to know, not all the records in my Excel table has values with decimals, so there is not a delimitter. Also some rows don't have a value (column is empty).
But my flow is not accepting this. It shows me the following error:
The template language function 'replace' expects its first parameter 'string' to be a string. The provided value is of type 'Null'
Does any one know how to fix this?
Thanks in advance.