Excel and PivotTable
文章平均质量分 79
JackWu
安徽怀宁人高级程序员 系统分析员主要从事sap业务应用咨询,熟悉SD,BW,ABAP等模块(从业15年)
展开
-
Excel-如何用VBA编程操作Pivot Table
Excel的Pivot Table在现实的工作中经常使用到,也常常需要用VBA来自动操作Pivot Table。 最近发现不错的代码样例,特摘抄供大家参考学习。Create A Pivot TableSub CreatePivotTable()'PURPOSE: Creates a brand new Pivot table on a new worksheet转载 2015-05-27 09:42:53 · 18549 阅读 · 2 评论 -
Excel——如何使用VBA操作单元格的格式
单元格的填充Cell Fills (Color, Patterns, & Gradients)Sub Modify_Cell_Fill() 'Change Fill Color Range("A1").Interior.Color = RGB(141, 180, 227) 'Add Pattern (See xlPattern constants for转载 2015-05-27 11:51:44 · 6251 阅读 · 0 评论 -
Excel--如何使用EXCEL连续打印快递单
在现在物流快递业务越来越多,填写快递单是一个非常痛苦的事。同时快递业务也需要记录跟踪,在现实工作中我们常常会用excel进行记录跟踪。有了excel我们就想到用excel的编程功能实现连续打印快递单,具体步骤如下:1、根据快递单幅面,在excel里增加一个sheet,并制定好excel的同版面的格式,这个工作非常需要耐心(sheet命名为:快递单);2、在本机上安装针式打印机,并自己定好特原创 2015-06-06 08:54:37 · 5293 阅读 · 1 评论 -
Referencing an Excel Pivot Table Range using VBA
This section explains how to access, reference, select or use a specific part of a Pivot Table, be it the Field or Data Labels, Row or Column Ranges, the Data or Values Area, the Page Area, specified转载 2015-05-25 15:15:58 · 1961 阅读 · 0 评论 -
Reference Pivot Fields and Pivot Items in an Excel Pivot Table, using VBA
This section explains how to access, reference, select or use Pivot Fields and Pivot Items in a Pivot Table, viz. Pivot Field, Column Field, Row Field, Data Field, Page Field, Pivot Items in a Field转载 2015-05-25 16:35:39 · 2687 阅读 · 1 评论 -
Excel--使用VBA Code 动态创建、修改和删除自定义窗体代码摘抄
Sub CreateUserform()'PURPOSE: Create & Modify a Userform with VBA Code'AUTHOR: John Walkenbach (www.SpreadsheetPage.com)'SOURCE: www.TheSpreadsheetGuru.com'********************************转载 2015-05-27 10:25:07 · 7654 阅读 · 0 评论 -
Excel-如何将含有对应值得单元格高亮显示的代码摘抄
Sub HighlightSpecificValue()'PURPOSE: Highlight all cells containing a specified values'SOURCE: www.TheSpreadsheetGuru.comDim fnd As String, FirstFound As StringDim FoundCell As Range,转载 2015-05-27 11:09:09 · 2583 阅读 · 0 评论