codecamp

EXCEL 工作表间复制“页面设置"

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

How to copy page setup properties from one sheet to another
1.open the worksheet that contains the correct settings
2.click on file,page setup,click on OK
3.open the worksheet you want to copy these settings to
4.click on edit,repeat page setup(or press Ctrl Y)
举例:某一工作簿的表2需要复制表1的”页面设置“,执行以下步骤
1。将表1变为当前工作表
2。按”文件“-”页面设置“中的”确定“
3。将表2变为当前工作表
4。按”编辑“-”重复页面设置“(或按Ctrl Y)
注:如果不执行第1、2步,则菜单如图

执行第1、2步后,则菜单变为


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; }