Copy to Another excel but only the numbers

Hi @delf,

in Assign activity use below one
Regex.Replace(value1.ToString(), "[^0-9]+", string.Empty)

Make sure you implemented System.Text.RegularExpressions

else you can directly use
System.Text.RegularExpressions.Regex.Replace(value1.ToString(), "[^0-9]+", string.Empty)

Regards,
Arivu