codecamp

EXCEL 用千表示数值的方法

中国教程网zhangditony翻译,转载请保留此信息 .

 
1. Press Ctrl+1 to open the Format Cells dialog box.
2. Select the Number tab, and from Category, select Custom.
3. In the Type box, enter the following Custom Formatting syntax:
#,##0.0,;[Red](#,##0.0,);-;

Result:
· Original number: 5,645,625
· The displaying formatting number: 5,645.6

Note:
The number formatting syntax is:
Positive; Negative; 0; Text

20070705_84cfcb07c75fbecd2ff7fbbrkxyml7rd[1].jpg

EXCEL 同时打开多个工作簿
EXCEL 选定区域内文字重排
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }