|
|
|
|
|
|
Re: Report to Excel Conversion [message #311860 is a reply to message #311818] |
Mon, 07 April 2008 02:57 |
hasnainlakhani
Messages: 24 Registered: January 2007
|
Junior Member |
|
|
Will u please mention me how to apply Number format masks.
I am trying to use the format mask as shown in Property Palette of Number Data Type but it couldn't work using format option as u mentioned in your last reply
Hasnain Raza
|
|
|
|
Re: Report to Excel Conversion [message #312162 is a reply to message #311903] |
Tue, 08 April 2008 02:25 |
hasnainlakhani
Messages: 24 Registered: January 2007
|
Junior Member |
|
|
What other options can be set using format keyword in rpt2xls.put_cell. Format Mask of Number and Date data Type are now set.
Please provide an example if any other task can be performed other than setting format mask
Thanks for your Corporation
Hasnain Raza
|
|
|
|
|
Re: Report to Excel Conversion [message #312696 is a reply to message #312691] |
Wed, 09 April 2008 11:12 |
fiery_hanzy
Messages: 10 Registered: December 2007
|
Junior Member |
|
|
or try dis in the main query
select decode(sign(emp.amount),
1,
to_char(emp.amount,'FM99999,999,999.00'),
-1,
'('||to_char(abs(emp.amount),
'FM99999,999,999.00')||')')
from employee emp
|
|
|
|