I have a couple of workflows that I was manually updating each type we opened a location. I have a different email being sent out based on the person assigned to the location. I have a SQL database with this information that i would like to query instead of updating each workflow. I get the error converting nvarchar to float. Anyone have ideas based on my screen shots?
Question
Question
Answer
Float is not alphanumeric, it's a number with up to 15 places after the decimal point. It looks like the SQL Data Import wizard guessed wrong and set the column type as float when it probably should've been nvarchar like the other ones.
Replies
Your "Location" column is defined as a "float" data type in SQL. What value are you trying to pass in?
It is an alpha numeric column that i use for dropdowns in forms, and various lookups
Float is not alphanumeric, it's a number with up to 15 places after the decimal point. It looks like the SQL Data Import wizard guessed wrong and set the column type as float when it probably should've been nvarchar like the other ones.
OK, so i got this working. I changed location the nvarchar. I was trying to change my other column to float.
Thanks so much