{{sellerTotalView > 1 ? __("sellers", {number: sellerTotalView}) : __("seller", {number: sellerTotalView}) }}, {{numTotalView > 1 ? __("items", {number: numTotalView}) : __("item", {number: numTotalView}) }}
free FREE

Change Your Zip Code

Inventory information and delivery speeds may vary for different locations.

Location History

{{email ? __('Got it!') : __('Restock Alert')}}

We will notify you by email when the item back in stock.

Cancel
Yami

Jingdong book

Excel 2013 VBA入门与应用(附光盘1张)

{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}

Excel 2013 VBA入门与应用(附光盘1张)

{{__(":people-members", {'people': item.limit_people_count})}} {{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ item.invalid_price }} {{ itemDiscount }}
Ends in
{{ itemCurrency }}{{ item.valid_price }}
{{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }}
{{ itemDiscount }}
{{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }} {{ itemCurrency }}{{ item.invalid_price }} {{itemDiscount}}
{{ itemCurrency }}{{ item.valid_price }}
Sale ends in
Sale will starts after Sale ends in
{{ getSeckillDesc(item.seckill_data) }}
{{ __( "Pay with Gift Card to get sale price: :itemCurrency:price", { 'itemCurrency' : itemCurrency, 'price' : (item.giftcard_price ? priceFormat(item.giftcard_price) : '0.00') } ) }} ({{ itemCurrency }}{{ priceFormat(item.giftcard_price / item.bundle_specification) }}/{{ item.unit }}) Details
Best before

Currently unavailable.

We don't know when or if this item will be back in stock.

Unavailable in your area.
Sold Out

Details

Full product details
Editer Recommend

《Excel 2013 VBA入门与应用》涵盖Excel 2013 VBA所有基础知识,并通过大量示例和一个综合案例,解读重点Excel VBA应用技巧。
《Excel 2013 VBA入门与应用》通过步骤-相应的程序代码-代码解析的形式,讲解知识点运用-操作过程-重点、难点剖析。
《Excel 2013 VBA入门与应用》读者对象包括ExceI VBA初学者、利用Excel VBA进行数据分析处理的办公人员和Excel VBA应用开发人员。
复杂数据简单化·分析处理自动化·日常办公高效化,涵盖ExcelVBA所有基础知识点和对象编程技巧,循序渐进,由浅入深,实例丰富,应用为先。
Content Description

《Excel 2013 VBA入门与应用》向读者介绍Excel VBA程序设计的基础知识,展示VBA编程的实战技巧,帮助读者快速经历Excel VBA从入门到精通的成长过程。
全书共15章,内容涵盖了Excel的宏、Excel VBA的开发环境、VBA语言基础、VBA的基本语句、VBA的语句结构、过程和函数的概念、对象的知识、常用对象的使用(包括Application对象、Work Book对象、Range对象、Work Sheets对象、Chart对象和Shape对象)、数据操作的技巧。《Excel 2013 VBA入门与应用》最后提供了一个员工信息管理系统的综合案例,可让读者综合所学知识进行应用开发。随书配送的多媒体教学光盘,包括书中全部实例的操作视频、源文件和PPT文件,可随时进行调用和播放学习。
《Excel 2013 VBA入门与应用》适合需要学习Excel VBA程序设计的初级用户,以及希望提高Excel VBA编程能力的中级用户阅读,同时也适合于相关专业的高等院校师生学习阅读。
Catalogue

第1章 迈向VBA的第一步从宏开始
1.1 用宏记录操作
1.1.1 录制宏
1.1.2 宏与VBA
1.2 宏的运行方式
1.2.1 使用“宏”对话框运行宏
1.2.2 使用快捷键运行宏
1.2.3 使用对象运行宏
1.2.4 从快速访问工具栏运行宏
1.2.5 从选项卡运行宏
1.3 加载宏的应用
1.3.1 使用Excel的加载宏
1.3.2 录制加载宏
1.3.3 卸载加载宏
1.4 宏为什么运行不了
1.4.1 为宏的使用上一把锁
1.4.2 对文件进行限制

第2章 了解VBA开发环境
2.1 初识VBE
2.1.1 如何进入VBE环境
2.1.2 VisualBasic编辑器的构成
2.2 VisualBasic编辑器中的窗口
2.2.1 工程资源管理器
2.2.2 “属性”窗口
2.2.3 “代码”窗口
2.2.4 立即窗口
2.3 VBA代码输入很简单
2.3.1 代码输入很简单
2.3.2 如何查询对象的属性和方法
2.3.3 获得帮助很容易

第3章 从零开始学习VBA
3.1 了解VBA的数据类型
3.1.1 认识VBA基本数据类型
3.1.2 特殊的枚举类型
3.1.3 数据类型是可以自定义的
3.2 存储数据的容器:变量
3.2.1 使用变量的第一步:声明变量
3.2.2 先声明,再使用——强制声明变量
3.2.3 变量的作用域
3.2.4 变量的生存周期
3.3 必不可少的常量
3.3.1 直接常量
3.3.2 符号常量
3.3.3 系统常量
3.4 告诉程序怎么算
3.4.1 进行计算的算术运算符
3.4.2 比较大小的比较运算符
3.4.3 进行逻辑运算的逻辑运算符
3.4.4 合并字符的连接运算符
3.4.5 应该先算什么
3.5 大量数据的操作从数组开始
3.5.1 初识数组
3.5.2 声明数组
3.5.3 随心所欲的动态数组

第4章 编写程序,从语句开始
4.1 编写程序代码的规则
4.1.1 编写代码必须遵循的原则
4.1.2 语句很长和很短怎么办
4.2 最基本的语句——赋值和注释语句
4.2.1 赋值语句
4.2.2 注释语句
4.3 输入输出何须控件
4.3.1 使用输入对话框输入数据
4.3.2 使用MsgBox函数输出数据
4.3.3 简单实用的Print方法
……
第5章 控制程序的流程-VBA的基本语句结构
第6章 过程,VBA的基本程序单元
第7章 过程的孪生兄弟——函数
第8章 对象,控制Excel的基础
第9章 位于顶层的Application对象
第10章 管理工作簿,从Workbook对象开始
第11章 操作工作表,使用Worksheets对象
第12章 数据操作的核心,使用Range对象
第13章 操作数据得心应手
第14章 工作表也可以是一张画布
第15章 综合案例——员工信息管理系统
Introduction

Excel是一款功能强大、技术先进且使用方便的数据分析和管理软件。Excel的优秀表现,除了其强大的制表功能之外,还在于其具有二次开发的能力。Excel允许用户以其作为平台开发新的工具,以完成Excel本身所不具有的功能。实现Excel二次开发的工具就是内置于Excel中的VBA语言,通过VBA来进行Excel应用程序的开发,能够增强Excel的自动化水平,提高Excel完成日常工作的效率,实现对复杂数据处理的简化。
对于非计算机专业的读者来说,学习一门计算机编程语言并非一件容易的事情,笔者也曾经历过VBA初学时的挣扎和入门后的迷茫,能深深体会到一本兼顾知识性和实用性的参考书对于学习VBA的意义。为了帮助广大读者快速掌握VBA程序设计的特点,轻松提高程序设计的能力,笔者根据自己多年学习和应用Excel VBA所获得的经验和体会编写了本书。本书从Excel VBA程序设计的基础知识开始,引领读者一步步深入了解VBA程序设计的应用。全书围绕在VBA应用中遇到的各种问题来进行讲解,可帮助读者快速掌握Excel VBA程序设计的相关知识并获得技能。本书特点
1.内容充实,知识全面
本书从Excel VBA的基本语法知识出发,介绍了Excel VBA中对象编程技巧、Excel应用程序界面的制作、Excel VBA与数据库的应用以及Excel与外部文件的交互等内容,涵盖了Excel VBA应用程序开发的方方面面,内容全面而丰富。
2:循序渐进,由浅入深
本书面向Excel VBA各个层面的用户,以帮助读者快速掌握Excel VBA程序设计为目标。全书在结构上采用由浅入深的方式,从读者学习的角度出发,以解决读者在学习过程中遇到的问题和掌握的使用技能为己任。在内容安排上,层层推进,步步深入,让读者实现“由入门到精通,由知之到用之”的平滑过渡。
3.实例丰富,实用为先
理解概念,掌握技巧,离不开编程实例。本书提供了大量的实例,实例选择力求具有针对性,与知识点紧密结合并突出应用技巧。实例在设计上不追求高精尖,突出实用性,以利于读者理解和实际操作。
4.优化代码,深入剖析
本书实例代码短小精悍,使用的算法不求高深,易于运行。本书没有复杂的理论讲解,通过代码来体现知识的应用技巧,力求以最简单的语句来解决最实际的问题。
5.类比讲解,描述直观
本书在对VBA对象方法和属性进行介绍时,以Excel操作来进行类比,帮助读者快速理解它们的作用。同时,全书图文丰富,以直观的描述方式来将知识要点和程序运行特征呈现到读者面前。
6.适用性强,便于速查
本书介绍的所有知识、编程方法和技巧同样适用于Excel的早期版本,如Excel2003和Excel2010。书中涉及到的大多数源代码均可以在实际应用中直接使用。同时,本书采用应用驱动模式,用户可以通过目录快速查找需要的操作任务实例,方便学习。本书结构
本书共15章,章节内容如下:
第1章介绍Excel宏的有关知识,主要包括录制宏的方法、设置宏的启动方式、了解加载宏和Excel中的宏安全设置等知识。
第2章介绍VBA的开发环境,包括认识VBA编辑器、了解VBA编辑器中常见窗口和在VBA编辑器中输入代码的技巧。
第3~8章介绍VBA程序设计的基础知识,包括VBA的数据类型和运算符、VBA的常用语句、VBA程序的流程控制、VBA过程和函数的概念以及VBA中对象的知识。
第9~14章介绍ExcelVBA中常见对象的使用,包括Application对象、WorkBook对象、WorkSheets对象、Range对象、Chart对象和Shape对象。
第15章是一个综合案例,介绍了使用ExcelVBA制作用于对企业员工信息进行管理的实用系统的过程。
本书读者
●需要获得ExcelVBA程序设计入门知识的零基础读者
●初步掌握ExcelVBA知识,需要进一步提高的初学者
●需要通过VBA提高Excel数据处理效率的各类从业人员
●高等院校学生和相关授课教师
●企业或相关单位培训班学员

Specifications

Brand Jingdong book
Brand Origin China

Disclaimer

Product packaging, specifications and price are subject to change without notice. All information about the products on our website is provided for information purposes only. Please always read labels, warnings and directions provided with the product before use.

View Full Terms of Use
Add to favorites
{{ $isZh ? coupon.coupon_name_sub : coupon.coupon_ename_sub | formatCurrency }}
{{__("Buy Directly")}} {{ itemCurrency }}{{ item.directly_price }}
Quantity
{{ quantity }}
{{ instockMsg }}
{{ limitText }}
{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}
Sold by JD@CHINA
Ship to
{{ __("Ship to United States only") }}
Free shipping over 69
Genuine guarantee

Added to Cart

Keep Shopping

More to Consider

{{ item.brand_name }}

{{ item.item_name }}

{{ item.currency }}{{ item.market_price }}

{{ item.currency }}{{ item.unit_price }}

{{ item.currency }}{{ item.unit_price }}

Coupons

{{ coupon.coupon_name_new | formatCurrency }}
Clip Clipped Over
{{ getCouponDescStr(coupon) }}
{{ coupon.use_time_desc }}
Expires soon {{ formatTime(coupon.use_end_time) }}

Share this item with friends

Cancel

Yami Gift Card

Get this exclusive deal when paying with gift card

Terms and Conditions

Gift card deals are special offers for selected products;

The gift card deals will automatically be activated if a customer uses gift card balance at check out and the balance is sufficient to pay for the total price of the shopping cart products with gift card deals;

You will not be able to activate the gift card deals if you choose other payment methods besides gift card. The products will be purchased at their normal prices;

If your account balance is not enough to pay for the products with gift card deals, you can choose to reload your gift card balance by clicking on the Reload button at either shopping cart page or check out page;

Products that have gift card deals can be recognized by a special symbol showing 'GC Deal';

For any additional questions or concerns, please contact our customer service;

Yamibuy reserves the right of final interpretation.

Sold by Yami

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

Yami is committed to provide our customers with a peace of mind when purchasing from us. Most items shipped from Yamibuy.com can be returned within 30 days of receipt of shipment (For Food, Beverages, Snacks, Dry Goods, Health supplements, Fresh Grocery and Perishables Goods, within 7 days of receipt of shipment due to damages or quality issues; To ensure that every customer receives safe and high-quality products, we do not provide refunds or returns for beauty products once they have been opened or used, except in the case of quality issues; Some products may have different policies or requirements associated with them, please see below for products under special categories, or contact Yami Customer Service for further assistance).
Thank you for your understanding and support.

Learn More

Sold by Yami

Terms and Conditions of Yami E-Gift Card

If you choose “Redeem automatically” as your delivery method, your gift card balance will be reload automatically after your order has been processed successfully;

If you choose “Send to Email”as your delivery method, the card number and CVV will be sent to the email address automatically;

Any user can use the card number and CVV to redeem the gift card, please keep your gift card information safely. If you have any trouble receiving email, please contact Yami customer service;

Yami gift card can be used to purchase both Yami owned or Marketplace products;

Yami gift card will never expire;

Yami gift card balance does not have to be used up at once;

All rights reserved by Yami.

Return Policy

Gift card that has already been consumed is non-refundable.

Sold by JD@CHINA

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Sold by JD@CHINA

Service Guarantee

Yami Cross-store Free Shipping over $69
Yami 30-days Return

Yami-China FC

Yami has a consolidation warehouse in China which collects multiple sellers’ packages and combines to one order. Our Yami consolidation warehouse will directly ship the packages to your door. Cross-store free shipping over $69.

Return Policy

You may return products within 30 days upon receiving the products. Sellers take responsibilities for any wrong shipment or missing items. Packing needs to be unopened for any other than quality issues return. We promise to pack carefully, but because goods are taking long journey to destinations, simple damages to packaging may occur. Any damages not causing internal goods quality problems are not allowed to return. If you open the package and any quality problem is found, please contact customer service within three days after receipt of goods.

Shipping Information

Yami Consolidation Service Shipping Fee $9.99(Free shipping over $69)

Sellers in China will ship their orders within 1-2 business days once the order is placed. Packages are sent to our consolidation warehouse in China and combined there. Our Yami consolidation warehouse will directly ship the packages to you via UPS. The average time for UPS to ship from China to the United States is about 10 working days and it can be traced using the tracking number. Due to the pandemic, the delivery time may be delayed by about 5 days. The package needs to be signed by the guest. If the receipt is not signed, the customer shall bear the risk of loss of the package.

Sold by JD@CHINA

Service Guarantee

Free shipping over 69
Genuine guarantee

Shipping

Yami Consolidated Shipping $9.99(Free shipping over $69)


Seller will ship the orders within 1-2 business days. The logistics time limit is expected to be 7-15 working days. In case of customs clearance, the delivery time will be extended by 3-7 days. The final receipt date is subject to the information of the postal company.

Yami Points information

All items are excluding from any promotion or points events on Yamibuy.com

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Yami

Download the Yami App

Back Top

Recommended for You

About the brand

Jingdong book

为您推荐

Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折

Reviews{{'('+ commentList.posts_count + ')'}}

Have your say. Be the first to help other guests.

Write a review
{{ totalRating }} Write a review
  • {{i}} star

    {{i}} stars

    {{ parseInt(commentRatingList[i]) }}%

Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}
Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}

No related comment~

Review

Yami Yami

{{ showTranslate(commentDetails) }}Show Less

{{ strLimit(commentDetails,800) }}Show more

Show Original

{{ commentDetails.content }}

Yami
Show All

{{ formatTime(commentDetails.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ commentDetails.likes_count }} {{ commentDetails.likes_count }} {{ commentDetails.reply_count }} {{commentDetails.in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Comments{{'(' + replyList.length + ')'}}

Yami Yami

{{ showTranslate(reply) }}Show Less

{{ strLimit(reply,800) }}Show more

Show Original

{{ reply.reply_content }}

{{ formatTime(reply.reply_in_dtm) }}

{{ reply.reply_likes_count }} {{ reply.reply_likes_count }} {{ reply.reply_reply_count }} {{reply.reply_in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Cancel

That’s all the comments so far!

Write a review
How would you rate this item?

Please add your comment.

  • A nice nickname will make your comments more popular!
  • The nickname in your account will be changed to the same as here.
Thanks for your review
Our community rely on great reviews like yours to find the best of Asia.

Report

If you find this content inappropriate and think it should be removed from the Yami.com site, let us know please.

Cancel

Are you sure to delete your review?

Cancel

You’ve Recently Viewed

About the brand

Jingdong book