[SOLVED] Â Replace before import |
5/1/2017 4:21:48 PM |
ASPRunner.NET General questions | |
![]() I need to change the value of 55.4µ to 55.40 before record imported via CSV. Does anybody know the way? I tried this but it caused an error. |
|
![]() |
jadach authorDevClub member 5/1/2017 |
It appears this works: values["Data3"] = rawvalues["Data3"].Replace("µ", "0"); |
![]() |
jadach authorDevClub member 5/1/2017 |
OK, after further investigation, the "µ" imports correctly from an Excel file, but not CSV. So I will instruct those importing to use Excel. |