跳到主要内容

如何在Excel中添加具有特定名称的新工作表?

有时,您想创建一个新工作表并在Excel中使用特定名称自动命名。 在本文中,我们将向您展示两种在当前工作簿中添加具有特定名称的新工作表,以及在Excel中的新工作簿中创建具有特定名称的工作表的两种方法。

使用VBA代码在当前工作簿中自动添加具有特定名称的新工作表
使用 Kutools for Excel 在新工作簿中自动添加具有特定名称的新工作表


使用VBA代码在当前工作簿中自动添加具有特定名称的新工作表

您可以使用以下VBA代码在当前工作簿的末尾添加具有特定名称的新工作表。

1。 按 其他 + F11 同时打开 Microsoft Visual Basic应用程序 窗口。

2.在 Microsoft Visual Basic应用程序 窗口中,单击 插页 > 模块.

3.复制以下VBA代码并将其粘贴到 模块 窗口。

VBA代码:在当前工作簿的末尾添加具有特定名称的新工作表

Sub CreateSheet()
'Updated by ExtendOffice 20181009
    Dim xName As String
    Dim xSht As Object
    On Error Resume Next
    xName = InputBox("Please enter a name for this new sheet ", "Kutools for Excel")
    If xName = "" Then Exit Sub
        Set xSht = Sheets(xName)
        If Not xSht Is Nothing Then
            MsgBox "Sheet cannot be created as there is already a worksheet with the same name in this workbook"
            Exit Sub
            End If
            Sheets.Add(, Sheets(Sheets.count)).Name = xName
        End Sub

4。 按 F5 键来运行代码。 在弹出 Kutools for Excel 对话框,请为此工作表输入一个名称,然后单击 OK 按钮。 看截图:

然后,将创建一个具有特定名称的新工作表,该工作表位于当前工作簿的末尾。


使用 Kutools for Excel 在新工作簿中自动添加具有特定名称的新工作表

在本节中,我们将介绍 创建序列工作表 实用程序 Kutools for Excel。 使用此实用程序,您可以轻松地在新工作簿中添加具有特定名称的新工作表。

申请前 Kutools for Excel首先下载并安装.

1.要添加具有特定名称的新工作表,您需要事先在单元格中键入此名称。 然后点击 Kutools 加 > 工作表 > 创建序列工作表.

2.在 创建序列工作表 对话框中选择 空白工作表 ,在 基本工作表 下拉列表,选择 时间在一定范围内 选项,并指定包含特定工作表名称的单元格,最后单击 OK 按钮。 看截图:

然后,立即在新工作簿中创建一个具有此特定名称的新工作表的单元格。

:

1.如果要同时创建多个具有特定名称的新工作表,请在单元格中一一输入这些名称,然后在 范围内的数据 框。
2.您也可以从序列号或自定义列表创建序列工作表 创建序列工作表 效用。 看截图:

  如果您想免费试用(30天)此实用程序, 请点击下载,然后按照上述步骤进行操作。

最佳办公生产力工具

🤖 Kutools 人工智能助手:基于以下内容彻底改变数据分析: 智能执行   |  生成代码  |  创建自定义公式  |  分析数据并生成图表  |  调用 Kutools 函数...
热门特色: 查找、突出显示或识别重复项   |  删除空白行   |  合并列或单元格而不丢失数据   |   不使用公式进行四舍五入 ...
超级查询: 多条件VLookup    多值VLookup  |   跨多个工作表的 VLookup   |   模糊查询 ....
高级下拉列表: 快速创建下拉列表   |  依赖下拉列表   |  多选下拉列表 ....
列管理器: 添加特定数量的列  |  移动列  |  切换隐藏列的可见性状态  |  比较范围和列 ...
特色功能: 网格焦点   |  设计图   |   大方程式酒吧    工作簿和工作表管理器   |  资源库 (自动文本)   |  日期选择器   |  合并工作表   |  加密/解密单元格    按列表发送电子邮件   |  超级筛选   |   特殊过滤器 (过滤粗体/斜体/删除线...)...
前 15 个工具集12 文本 工具 (添加文本, 删除字符,...)   |   50+ 图表 类型 (甘特图,...)   |   40+ 实用 公式 (根据生日计算年龄,...)   |   19 插入 工具 (插入二维码, 从路径插入图片,...)   |   12 转化 工具 (小写金额转大写, 货币兑换,...)   |   7 合并与拆分 工具 (高级组合行, 分裂细胞,...)   |   ... 和更多

使用 Kutools for Excel 增强您的 Excel 技能,体验前所未有的效率。 Kutools for Excel 提供了 300 多种高级功能来提高生产力并节省时间。  单击此处获取您最需要的功能...

产品描述


Office Tab 为 Office 带来选项卡式界面,让您的工作更加轻松

  • 在Word,Excel,PowerPoint中启用选项卡式编辑和阅读,发布者,Access,Visio和Project。
  • 在同一窗口的新选项卡中而不是在新窗口中打开并创建多个文档。
  • 每天将您的工作效率提高50%,并减少数百次鼠标单击!
Comments (5)
No ratings yet. Be the first to rate!
This comment was minimized by the moderator on the site
Hi, this does not properly account for user clicking cancel. It still creates worksheet.
This comment was minimized by the moderator on the site
Hi
The code has been updated with the problem solving. Please have a try and thanks for your comment.
This comment was minimized by the moderator on the site
Hi, I'm quite new to VBA, the above code works great for adding a new spreadsheet and renaming it, however I would then like it to automatically copy and paste the contents on my 'template' sheet into the new sheet? Can anybody help please?

Thanks
This comment was minimized by the moderator on the site
Good day,
Please try the below VBA code. Hope it can help. Thanks for your comment.

Sub CreateSheet()
Dim xName As String
Dim xSht As Object
Dim xNWS As Worksheet
On Error Resume Next
xName = Application.InputBox("Please enter a name for this new sheet ", "Kutools for Excel")
If xName = "" Then Exit Sub
Set xSht = Sheets(xName)
If Not xSht Is Nothing Then
MsgBox "Sheet cannot be created as there is already a worksheet with the same name in this workbook"
Exit Sub
End If
ActiveSheet.Copy after:=Sheets(Sheets.count)
Set xNWS = Sheets(Sheets.count)
xNWS.Name = xName
End Sub
This comment was minimized by the moderator on the site
Thank you for your reply crystal! I have it working now :)
There are no comments posted here yet
Please leave your comments in English
Posting as Guest
×
Rate this post:
0   Characters
Suggested Locations