How to avoid exponential conversion from unix to excel
Clash Royale CLAN TAG#URR8PPP
up vote
1
down vote
favorite
I am generating a csv file in unix by calling database view.
After generating the file,I am sending the file to business users through email.
so the problem is when they open the cvs, big numbers values are reflecting with exponential number 1.05501E+17 instead of the actual number 105501060000700000.
Is there any way to avoid this or to fix this in unix.
Thanks in Advance.
scripting
add a comment |Â
up vote
1
down vote
favorite
I am generating a csv file in unix by calling database view.
After generating the file,I am sending the file to business users through email.
so the problem is when they open the cvs, big numbers values are reflecting with exponential number 1.05501E+17 instead of the actual number 105501060000700000.
Is there any way to avoid this or to fix this in unix.
Thanks in Advance.
scripting
Yes,didn't work.
â user313150
Sep 27 at 20:00
Actual values are like this one 105501060000700000..
â user313150
Sep 27 at 20:18
I got the solution.
â user313150
Sep 27 at 20:39
1
@steve"=""1000000000000000000000"""
imports as a string on my machine so I think you should post that as an answer.
â Fabby
Sep 27 at 20:47
add a comment |Â
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I am generating a csv file in unix by calling database view.
After generating the file,I am sending the file to business users through email.
so the problem is when they open the cvs, big numbers values are reflecting with exponential number 1.05501E+17 instead of the actual number 105501060000700000.
Is there any way to avoid this or to fix this in unix.
Thanks in Advance.
scripting
I am generating a csv file in unix by calling database view.
After generating the file,I am sending the file to business users through email.
so the problem is when they open the cvs, big numbers values are reflecting with exponential number 1.05501E+17 instead of the actual number 105501060000700000.
Is there any way to avoid this or to fix this in unix.
Thanks in Advance.
scripting
scripting
asked Sep 27 at 19:54
user313150
61
61
Yes,didn't work.
â user313150
Sep 27 at 20:00
Actual values are like this one 105501060000700000..
â user313150
Sep 27 at 20:18
I got the solution.
â user313150
Sep 27 at 20:39
1
@steve"=""1000000000000000000000"""
imports as a string on my machine so I think you should post that as an answer.
â Fabby
Sep 27 at 20:47
add a comment |Â
Yes,didn't work.
â user313150
Sep 27 at 20:00
Actual values are like this one 105501060000700000..
â user313150
Sep 27 at 20:18
I got the solution.
â user313150
Sep 27 at 20:39
1
@steve"=""1000000000000000000000"""
imports as a string on my machine so I think you should post that as an answer.
â Fabby
Sep 27 at 20:47
Yes,didn't work.
â user313150
Sep 27 at 20:00
Yes,didn't work.
â user313150
Sep 27 at 20:00
Actual values are like this one 105501060000700000..
â user313150
Sep 27 at 20:18
Actual values are like this one 105501060000700000..
â user313150
Sep 27 at 20:18
I got the solution.
â user313150
Sep 27 at 20:39
I got the solution.
â user313150
Sep 27 at 20:39
1
1
@steve
"=""1000000000000000000000"""
imports as a string on my machine so I think you should post that as an answer.â Fabby
Sep 27 at 20:47
@steve
"=""1000000000000000000000"""
imports as a string on my machine so I think you should post that as an answer.â Fabby
Sep 27 at 20:47
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
1
down vote
By adding "=""
before the number and """
after, Excel should import as string, thus avoiding the exponential woe.
Instead of the original value of
105501060000700000
Add the extra characters, becoming as below, to import as string.
"=""105501060000700000"""
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
By adding "=""
before the number and """
after, Excel should import as string, thus avoiding the exponential woe.
Instead of the original value of
105501060000700000
Add the extra characters, becoming as below, to import as string.
"=""105501060000700000"""
add a comment |Â
up vote
1
down vote
By adding "=""
before the number and """
after, Excel should import as string, thus avoiding the exponential woe.
Instead of the original value of
105501060000700000
Add the extra characters, becoming as below, to import as string.
"=""105501060000700000"""
add a comment |Â
up vote
1
down vote
up vote
1
down vote
By adding "=""
before the number and """
after, Excel should import as string, thus avoiding the exponential woe.
Instead of the original value of
105501060000700000
Add the extra characters, becoming as below, to import as string.
"=""105501060000700000"""
By adding "=""
before the number and """
after, Excel should import as string, thus avoiding the exponential woe.
Instead of the original value of
105501060000700000
Add the extra characters, becoming as below, to import as string.
"=""105501060000700000"""
answered Sep 27 at 21:53
steve
13k22250
13k22250
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f471922%2fhow-to-avoid-exponential-conversion-from-unix-to-excel%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Yes,didn't work.
â user313150
Sep 27 at 20:00
Actual values are like this one 105501060000700000..
â user313150
Sep 27 at 20:18
I got the solution.
â user313150
Sep 27 at 20:39
1
@steve
"=""1000000000000000000000"""
imports as a string on my machine so I think you should post that as an answer.â Fabby
Sep 27 at 20:47