ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

搜索
EH技术汇-专业的职场技能充电站 妙哉!函数段子手趣味讲函数 Excel服务器-会Excel,做管理系统 效率神器,一键搞定繁琐工作
HR薪酬管理数字化实战 Excel 2021函数公式学习大典 Excel数据透视表实战秘技 打造核心竞争力的职场宝典
让更多数据处理,一键完成 数据工作者的案头书 免费直播课集锦 ExcelHome出品 - VBA代码宝免费下载
用ChatGPT与VBA一键搞定Excel WPS表格从入门到精通 Excel VBA经典代码实践指南
查看: 3720|回复: 2

[原创] 儲存格首尾加文字、儲存格首尾加數列

[复制链接]

TA的精华主题

TA的得分主题

发表于 2009-6-4 21:31 | 显示全部楼层 |阅读模式
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
上星期開始學VBA,第一個作品請大家幫我看看有無不妥之處(我測試是沒問題),謝謝!
下次想要設計不僅加在頭尾,還可以加在中間的VBA,請大家給我一點提示,謝謝!

Sub 儲存格尾加文字()
   Dim 儲存格 As Range
   Dim 選擇 As Range
   Dim 文字 As String
   Dim 分隔 As String
   Dim 內容 As String
   Dim 已選 As String
'    Dim 數量 As Long
'    Dim 欄數 As Integer
'    Dim 起欄 As Integer
   已選 = Selection.Address
   Set 選擇 = Application.InputBox("選擇儲存格範圍以加入文字:", "選擇儲存格", 已選, , , , , 8)
   選擇.Select
'    數量 = Selection.Count
'    欄數 = Selection.Columns.Count
'    起欄 = ActiveCell.Column
   文字 = Application.InputBox("加入儲存格尾的文字或數字為:", "輸入文字", , , , , , 2)
   分隔 = Application.InputBox("加入分隔符號為", "輸入分隔符號", "-", , , , , 2)
   For Each 儲存格 In Selection
   內容 = 儲存格.value
   儲存格.value = 內容 & 分隔 & 文字
   Next
'    For i = 1 To 數量
'    內容 = ActiveCell.value
'    ActiveCell.value = 內容 & 分隔 & 文字
'    If ActiveCell.Column = 起欄 + 欄數 - 1 Then
'    ActiveCell.Offset(1, 1 - 欄數).Select
'    Else
'    ActiveCell.Offset(0, 1).Select
'    End If
'    Next i
End Sub

Sub 儲存格尾加數列()
   Dim 選擇 As Range
   Dim 起數 As Long
   Dim 間距 As Long
   Dim 分隔 As String
   Dim 內容 As String
   Dim 已選 As String
   Dim 數量 As Long
   Dim 欄數 As Integer
   Dim 起欄 As Integer
   已選 = Selection.Address
   Set 選擇 = Application.InputBox("選擇儲存格範圍以加入文字:", "選擇儲存格", 已選, , , , , 8)
   選擇.Select
   數量 = Selection.Count
   欄數 = Selection.Columns.Count
   起欄 = ActiveCell.Column
   起數 = Application.InputBox("加入起數為", "輸入數字", 1, , , , , 1)
   間距 = Application.InputBox("加入間距為", "輸入數字", 1, , , , , 1)
   分隔 = Application.InputBox("加入分隔符號為", "輸入分隔符號", "-", , , , , 2)
   For i = 1 To 數量
   內容 = ActiveCell.value
   ActiveCell.value = 內容 & 分隔 & 起數 + 間距 * (i - 1)
   If ActiveCell.Column = 起欄 + 欄數 - 1 Then
   ActiveCell.Offset(1, 1 - 欄數).Select
   Else
   ActiveCell.Offset(0, 1).Select
   End If
   Next i
End Sub

[ 本帖最后由 linyancheng 于 2009-6-6 15:01 编辑 ]

TA的精华主题

TA的得分主题

 楼主| 发表于 2009-6-5 21:45 | 显示全部楼层
請教,突然發現,如果執行到一半,取消輸入時,會出現偵錯,要如何才能避免掉?

TA的精华主题

TA的得分主题

 楼主| 发表于 2009-6-6 14:52 | 显示全部楼层
原帖由 linyancheng 于 2009-6-5 21:45 发表
請教,突然發現,如果執行到一半,取消輸入時,會出現偵錯,要如何才能避免掉?


改成這樣就能避免掉了:

Sub 儲存格尾加文字()
    Dim 儲存格 As Range
    Dim 選擇 As Range
    Dim 文字 As String
    Dim 分隔 As String
    Dim 內容 As String
    Dim 回答 As Integer
    Dim 已選 As String
'    Dim 數量 As Long
'    Dim i As Long
'    Dim 欄數 As Integer
'    Dim 起欄 As Integer
    On Error GoTo line
    已選 = Selection.Address
    Set 選擇 = Application.InputBox("選擇儲存格範圍以加入文字:", "選擇儲存格", 已選, , , , , 8)
    選擇.Select
'    數量 = Selection.Count
'    欄數 = Selection.Columns.Count
'    起欄 = ActiveCell.Column
    文字 = Application.InputBox("加入儲存格尾的文字或數字為:", "輸入文字", , , , , , 2)
    If 文字 = "False" Then
    Exit Sub
    End If
    分隔 = Application.InputBox("加入分隔符號為", "輸入分隔符號", "-", , , , , 2)
    If 分隔 = "False" Then
    分隔 = ""
    回答 = MsgBox("要取消嗎?" & Chr(13) & "若選擇是,將結束程序。" & Chr(13) & "若選擇否,將省略分隔符號繼續。", vbYesNo + vbDefaultButton2 + vbQuestion, "請注意")
        If 回答 = vbYes Then
        Exit Sub
        End If
    End If
    For Each 儲存格 In Selection
    內容 = 儲存格.Value
    儲存格.Value = 內容 & 分隔 & 文字
    Next
'    For i = 1 To 數量
'    內容 = ActiveCell.Value
'    ActiveCell.Value = 內容 & 分隔 & 文字
'    If ActiveCell.Column = 起欄 + 欄數 - 1 Then
'    ActiveCell.Offset(1, 1 - 欄數).Select
'    Else
'    ActiveCell.Offset(0, 1).Select
'    End If
'    Next i
line:
End Sub
Sub 儲存格首加文字()
    Dim 儲存格 As Range
    Dim 選擇 As Range
    Dim 文字 As String
    Dim 分隔 As String
    Dim 內容 As String
    Dim 回答 As Integer
    Dim 已選 As String
'    Dim 數量 As Long
'    Dim i As Long
'    Dim 欄數 As Integer
'    Dim 起欄 As Integer
    On Error GoTo line
    已選 = Selection.Address
    Set 選擇 = Application.InputBox("選擇儲存格範圍以加入文字:", "選擇儲存格", 已選, , , , , 8)
    選擇.Select
'    數量 = Selection.Count
'    欄數 = Selection.Columns.Count
'    起欄 = ActiveCell.Column
    文字 = Application.InputBox("加入儲存格尾的文字或數字為:", "輸入文字", , , , , , 2)
    If 文字 = "False" Then
    Exit Sub
    End If
    分隔 = Application.InputBox("加入分隔符號為", "輸入分隔符號", "-", , , , , 2)
    If 分隔 = "False" Then
    分隔 = ""
    回答 = MsgBox("要取消嗎?" & Chr(13) & "若選擇是,將結束程序。" & Chr(13) & "若選擇否,將省略分隔符號繼續。", vbYesNo + vbDefaultButton2 + vbQuestion, "請注意")
        If 回答 = vbYes Then
        Exit Sub
        End If
    End If
    For Each 儲存格 In Selection
    內容 = 儲存格.Value
    儲存格.Value = 文字 & 分隔 & 內容
    Next
'    For i = 1 To 數量
'    內容 = ActiveCell.Value
'    ActiveCell.Value = 內容 & 分隔 & 文字
'    If ActiveCell.Column = 起欄 + 欄數 - 1 Then
'    ActiveCell.Offset(1, 1 - 欄數).Select
'    Else
'    ActiveCell.Offset(0, 1).Select
'    End If
'    Next i
line:
End Sub
Sub 儲存格尾加數列()
    Dim 選擇 As Range
    Dim 起數 As Long
    Dim 間距 As Long
    Dim 分隔 As String
    Dim 內容 As String
    Dim 回答 As Integer
    Dim 已選 As String
    Dim 數量 As Long
    Dim i As Long
    Dim 欄數 As Integer
    Dim 起欄 As Integer
    On Error GoTo line
    已選 = Selection.Address
    Set 選擇 = Application.InputBox("選擇儲存格範圍以加入文字:", "選擇儲存格", 已選, , , , , 8)
    選擇.Select
    數量 = Selection.Count
    欄數 = Selection.Columns.Count
    起欄 = ActiveCell.Column
    起數 = Application.InputBox("加入起數為", "輸入數字", 1, , , , , 1)
    If 起數 = 0 Then
    MsgBox "起數為0"
    End If
    間距 = Application.InputBox("加入間距為", "輸入數字", 1, , , , , 1)
    If 間距 = 0 Then
    MsgBox "間距為0"
    End If
    分隔 = Application.InputBox("加入分隔符號為", "輸入分隔符號", "-", , , , , 2)
    If 分隔 = "False" Then
    分隔 = ""
    回答 = MsgBox("要取消嗎?" & Chr(13) & "若選擇是,將結束程序。" & Chr(13) & "若選擇否,將省略分隔符號繼續。", vbYesNo + vbDefaultButton2 + vbQuestion, "請注意")
        If 回答 = vbYes Then
        Exit Sub
        End If
    End If
    For i = 1 To 數量
    內容 = ActiveCell.Value
    ActiveCell.Value = 內容 & 分隔 & 起數 + 間距 * (i - 1)
    If ActiveCell.Column = 起欄 + 欄數 - 1 Then
    ActiveCell.Offset(1, 1 - 欄數).Select
    Else
    ActiveCell.Offset(0, 1).Select
    End If
    Next i
line:
End Sub
Sub 儲存格首加數列()
    Dim 選擇 As Range
    Dim 起數 As Long
    Dim 間距 As Long
    Dim 分隔 As String
    Dim 內容 As String
    Dim 回答 As Integer
    Dim 已選 As String
    Dim 數量 As Long
    Dim i As Long
    Dim 欄數 As Integer
    Dim 起欄 As Integer
    On Error GoTo line
    已選 = Selection.Address
    Set 選擇 = Application.InputBox("選擇儲存格範圍以加入文字:", "選擇儲存格", 已選, , , , , 8)
    選擇.Select
    數量 = Selection.Count
    欄數 = Selection.Columns.Count
    起欄 = ActiveCell.Column
    起數 = Application.InputBox("加入起數為", "輸入數字", 1, , , , , 1)
    If 起數 = 0 Then
    MsgBox "起數為0"
    End If
    間距 = Application.InputBox("加入間距為", "輸入數字", 1, , , , , 1)
    If 間距 = 0 Then
    MsgBox "間距為0"
    End If
    分隔 = Application.InputBox("加入分隔符號為", "輸入分隔符號", "-", , , , , 2)
    If 分隔 = "False" Then
    分隔 = ""
    回答 = MsgBox("要取消嗎?" & Chr(13) & "若選擇是,將結束程序。" & Chr(13) & "若選擇否,將省略分隔符號繼續。", vbYesNo + vbDefaultButton2 + vbQuestion, "請注意")
        If 回答 = vbYes Then
        Exit Sub
        End If
    End If
    For i = 1 To 數量
    內容 = ActiveCell.Value
    ActiveCell.Value = 起數 + 間距 * (i - 1) & 分隔 & 內容
    If ActiveCell.Column = 起欄 + 欄數 - 1 Then
    ActiveCell.Offset(1, 1 - 欄數).Select
    Else
    ActiveCell.Offset(0, 1).Select
    End If
    Next i
line:
End Sub
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

手机版|关于我们|联系我们|ExcelHome

GMT+8, 2025-1-5 10:58 , Processed in 0.020933 second(s), 10 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

沪公网安备 31011702000001号 沪ICP备11019229号-2

本论坛言论纯属发表者个人意见,任何违反国家相关法律的言论,本站将协助国家相关部门追究发言者责任!     本站特聘法律顾问:李志群律师

快速回复 返回顶部 返回列表