Copying selected range from SQL to Excel sheet

I totally missed the Decimal.Parse() method for Scientific Notation, that’s awesome! Glad you’ve got your solution, though!

1 Like

Altough it works converting to decimal, you really dont need it, and be aware that is a very big type to use when you dont need it, if you ever work with a lot of data…

2 Likes

I would highly recommend keeping decimal if it is for monetary amounts though, as that is the whole point of the type. If it’s for anything else double is usually preferred :slight_smile:

2 Likes

yep in this case he doesnt even have precision digits, so no reason to use such a heavy type for only 10 digits numbers…

2 Likes

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.