
VBA
CodingIsFun
function myProfile(){
let major= ['English', 'Computer Science and Technology'];
let career_goal = 'front-end development';
let motto = 'Pressing on is my only option';
}
展开
-
Microsoft Excel 2019 Pivot Table Data Crunching by Bill Jelen and Michael Alexander
About the companion contentThe download files for this book include all of the data sets used to produce the book, so you can practice the concepts in the book. You can download this book’s companion content from the following page:MicrosoftPressStore.co原创 2020-12-29 13:26:27 · 818 阅读 · 0 评论 -
VBA Automation for Excel 2019 Cookbook by Mike Van Niekerk
VBA Automation for Excel 2019 CookbookSolutions to automate tasks and increase productivity with Excel and other MS Office applicationsBy Mike Van NiekerkThe code bundle for the book is also hosted on GitHub at https://github.com/PacktPublishing/VBA-Aut原创 2020-11-30 09:14:09 · 4088 阅读 · 0 评论 -
使用VBA复制若干个工作表,并另存到新的工作簿
代码如下:Sub MoveSheets()'在下面Array中列出所有需要复制的工作表的名称Worksheets(Array("工作表1", "工作表11", "工作表22", "工作表32")).CopySet wbNew = ActiveWorkbookWith wbNew ActiveWorkbook.SaveAs Filename:="D:\folder_f...原创 2019-01-18 11:37:15 · 31648 阅读 · 4 评论 -
Excel技巧分享1-利用VBA定位工作表
如果你的Excel 工作簿内有成百上千个工作表, 要查找其中的某一个工作表会很麻烦。使用下面的VBA 代码进行查询会极大的缩短查询时间。Sub GoToSheet()Application.ScreenUpdating = False SheetName = Application.InputBox("输入要查询的工作表的名称:") Sheets(SheetName).Se...原创 2018-10-31 14:45:41 · 3686 阅读 · 0 评论