修改數字輸出格式
,直接輸出的
' || nvl(l_h.e_number, ' ') ||
'如果在
bi pulbisher
報表excel
輸出身份證號想不顯示科學
計數法,可以通過修改定義
的rtf
模板實現,具體如下:
找到身份證號**,右鍵點選屬性
->
新增幫助文字,可看到在自動鍵入欄位的內容如下
: <?national_identifier?>
將其修改為:
<? national_identifier ?>
在簡易的
jsp匯出
html
版本的execl
中所有的檔案匯出預設都是文字檔案,這給業務人員帶來了一些不必要的操作,建議使用下面的方法,可以調整匯出的格式型別.
mso-number-format:"0"
no decimals
mso-number-format:"0\.000"
3 decimals
mso-number-format:"\#\,\#\#0\.000"
comma with 3 dec
mso-number-format:"mm\/dd\/yy"
date7
mso-number-format:"mmmm\ d\,\ yyyy"
date9
mso-number-format:"m\/d\/yy\ h\:mm\ am\/pm"
d -t ampm
mso-number-format:"short date"
01/03/1998
mso-number-format:"medium date"
01-mar-98
mso-number-format:"d\-mmm\-yyyy"
01-mar-1998
mso-number-format:"short time"
5:16
mso-number-format:"medium time"
5:16 am
mso-number-format:"long time"
5:16:21:00
mso-number-format:"percent"
percent - two decimals
mso-number-format:"0%"
percent - no decimals
mso-number-format:"0\.e+00"
scientific notation
mso-number-format:"\@"
text
mso-number-format:"\#\ ???\/???"
fractions - up to 3 digits (312/943)
mso-number-format:"\0022
£\0022\#\,\#\#0\.00"
£12.76
mso-number-format:"\#\,\#\#0\.00_ \;\[red\]\-\#\,\#\#0\.00\ "
2 decimals, negative numbers in red and signed
(1.56 -1.56)
關於金額數字輸出格式
關於金額數字輸出格式,蘋果官方給出了乙個很好用的類 nsnumberformatter,顧名思義 就是數字管理類。它主要提供了乙個把數字型別轉化成你需要的金額格式字串的乙個方法。它可以很方便的轉化所有型別的數字格式為你想要的金額格式。主要 非常簡單 如下 nsnumberformatter form...
C C 進製轉換和輸出格式
include include 設定必備的標頭檔案 using namespace std intmain include include using namespace std intmain 函式原型 long int strtol const char nptr,char endptr,int...
C 輸出格式
cout.precision 設定小數點後精確度,cout.width 設定寬度,cout.setf 設定顯示格式,比如 cout.setf ios left 左對齊 cout.setf ios showpoint 不管是否有小數字,顯示小數點 cout.fill 不足寬度則填充,如cout.fil...