Skip to Main Content

Oracle Forms

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

How to keep leading zeros when puting them into an excel file ?

392544Aug 28 2006 — edited Aug 28 2006
Hi all,
I must put number data into an excel file. They are formated as zero padded to the left when their length does not reach 10 ; example 0100680072.
The problem is that the zero is not included when I open the file ; it shows 100680072.
I have tried to append an apostrophe before the variable containing the data , and the zero appears :

if lower(substr(fExp,-3)) not in('csv','xls') then
Text_IO.Put_Line( in_file, bTable(i));
else
Text_IO.Put_Line( in_file, ''''||bTable(i));
end if;

But the problem is that the apostrophe also is in the excel data ; and it is not good.
So how to make the zero appear correctly ?
Thank you very much indeed.
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Sep 25 2006
Added on Aug 28 2006
3 comments
1,104 views