Hi,
Im getting the follow error when performing the bellow activity
Assign Activity
String = CurrentRow(“Column Namee”).ToString
Error
‘VisualBasicValue`1’ requires compilation in order to run
Hi,
Im getting the follow error when performing the bellow activity
Assign Activity
String = CurrentRow(“Column Namee”).ToString
Error
‘VisualBasicValue`1’ requires compilation in order to run
Hi @David_Senabre ,
try below syntax
StringVal = Convert.ToString(CurrentRow("Column Namee"))
can you share the screenshot
Regards,
Arivu
Welcome to our community,
did you try deleting your assign activity and then drag and drop again?
Regards
Hi @David_Senabre ,
If your variable is named as String
, then change it to some another name, as String
is a reserved word and we may face issues by using it as a variable name.
Let us know if the above suggestion was able to help you resolve.