Re: SharePoint List - input string was not in a correct format
Hi!
Just for troubleshooting purposes, I would try to replace temporarily current 'Country name' input, assign a dummy text instead and reexecute the flow? So if 'Create item' now works, you will 100% sure the problem is due to the special character
Now let's assume your hypothesis is confirmed. Let's also assume your flow currently assigns as the input to 'Country name' SP column a string variable called 'myInputCountryName'
You can get rid of this special character by assigning the following WDL expression instead:
replace(variables('myInputCountryName'),'Ã','A')
Hope this helps