標題:
[發問]
註解的方式
[打印本頁]
作者:
vicky12060709
時間:
2016-4-4 21:04
標題:
註解的方式
想點B4戓B7,就可以N4出現註 我希望點到這個批號就可以把 B5&C5 &F5&@G5&K5&*1.13----能做到向N4儲存格的註解的註
作者:
GBKEE
時間:
2016-4-5 07:46
回復
1#
vicky12060709
試試看
Sheet35,(PE袋) 模組的程式碼 (工作表預設)
Option Explicit
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Dim xText As String, Rng As Range, i As Integer, e As Variant
With Target
If .MergeCells Then '是合併儲存格
If .Rows.Count >= 4 And .Cells(1).Column = 14 Then '有4個以上儲存格 且在 N欄
Set Rng = Range("A" & .Rows(1).Row) '設定A欄的位置
xText = "無限使用:" & vbLf
For i = 1 To .Rows.Count
For Each e In Array("B", "C", "F", "G", "K") 'B5&C5 &F5&@G5&K5&*1.13----能
xText = xText & " " & IIf(e = "G", "@", "") & Rng.Range(e & i)
Next
xText = xText & "*1.13" & vbLf
Next
With Target.Cells(1)
If .Comment Is Nothing Then .AddComment
With .Comment
.Text xText
.Shape.TextFrame.AutoSize = True '自動調整
End With
End With
End If
End If
End With
End Sub
複製代碼
作者:
vicky12060709
時間:
2016-4-5 09:12
謝謝 大神級的幫忙
可以 用了 ,方便多了 謝謝
歡迎光臨 麻辣家族討論版版 (http://forum.twbts.com/)