将文本粘贴到Excel注释VBA中

时间:2015-04-08 13:45:21

标签: excel-vba paste vba excel

我无法找到或创建VBA代码,以允许将复制的文本从另一个工作表(sheet2)中的一个单元格粘贴到另一个工作表(sheet1)中之前创建的注释中。

这是我到目前为止已经成功编译的代码,我仍然坚持如何在评论框中找到文本。

Sub For_Reals()

'Add Comment
Sheets("Sheet1").Range("F2").AddComment
Range("F2").Comment.Visible = False

'Find Value in Sheet2 based on Value from Sheet1
Dim FindString As String
    Dim Rng As Range
    FindString = Sheets("Sheet1").Range("F2").Value
    If Trim(FindString) <> "" Then
        With Sheets("Sheet2").Range("C:C")
            Set Rng = .Find(What:=FindString, _
                            After:=.Cells(.Cells.Count), _
                            LookIn:=xlValues, _
                            LookAt:=xlWhole, _
                            SearchOrder:=xlByRows, _
                            SearchDirection:=xlNext, _
                            MatchCase:=False)
            If Not Rng Is Nothing Then
                Application.Goto Rng, True
            Else
                MsgBox "Nothing found"
            End If
        End With
    End If

'Copy Value 4 cells to the right of found Value
Selection.Offset(0, 4).Copy

'Need Code to paste copied value in previously created comment

End Sub

2 个答案:

答案 0 :(得分:0)

不是将单元格值复制并粘贴到注释中,而是在创建注释框的同时创建文本。如果已存在注释框,则会引发错误 - 因此请事先删除该单元格中的任何注释框。

VBA帮助以此为例:

Worksheets(1).Range("E5").AddComment "Current Sales"

因此,考虑到这一点,这段代码将起到作用:

Sub For_Reals()

    'Find Value in Sheet2 based on Value from Sheet1
    Dim FindString As String
    Dim Rng As Range
    FindString = Sheets("Sheet1").Range("F2").Value
    If Trim(FindString) <> "" Then
        With Sheets("Sheet2").Range("C:C")
            Set Rng = .Find(What:=FindString, _
                        After:=.Cells(.Cells.Count), _
                        LookIn:=xlValues, _
                        LookAt:=xlWhole, _
                        SearchOrder:=xlByRows, _
                        SearchDirection:=xlNext, _
                        MatchCase:=False)
            'Remove any existing comments, create comment and add text.
            If Not Rng Is Nothing Then
                Sheets("Sheet1").Range("F2").ClearComments
                Sheets("Sheet1").Range("F2").AddComment Rng.Offset(0, 4).Value
                Range("F2").Comment.Visible = True
            Else
                MsgBox "Nothing found"
            End If
        End With
    End If

End Sub

答案 1 :(得分:0)

我最终的最终代码如下。添加了一个循环来遍历列,并添加了第二个引用以将定义和描述同时提取到注释中。感谢Darren Bartrup-Cook在我被困时帮助我!

Sub Add_Comment_As_Def_Desc_Reference()
'Posted by Jeff Barrett 2015-04-10    

    Dim FindString1 As String
    Dim Rng1 As Range
    Dim sCommentText1 As String
    Dim sCommentText2 As String
    Dim str1 As String
    Dim str2 As String
    Dim cmmt As String
    Dim i As Integer        
    str1 = "Definition: "
    str2 = "Description: "            
 'Loop Code, must specify range for i based on # of FieldAlias    
Sheets("Fields").Select
Range("F4").Select
For i = 4 To 59          
    'Find Definition & Description in NASDefs based on Value from FieldAlias
    FindString1 = ActiveCell.Value
    If Trim(FindString1) <> "" Then
        With Sheets("NASDefs").Range("C:C")
            Set Rng1 = .Find(What:=FindString1, _
                        After:=.Cells(.Cells.Count), _
                        LookIn:=xlValues, _
                        LookAt:=xlWhole, _
                        SearchOrder:=xlByRows, _
                        SearchDirection:=xlNext, _
                        MatchCase:=False)
        End With
    End If    
            'Remove any existing comments, create comment and add text in FieldAlias
            If Not Rng1 Is Nothing Then
                ActiveCell.ClearComments
                sCommentText1 = Rng1.Offset(0, 4).Value
                sCommentText2 = Rng1.Offset(0, 5).Value
                ActiveCell.AddComment.Text Text:=str1 & Chr(10) & Chr(10) & sCommentText1 & Chr(10) & Chr(10) & str2 & Chr(10) & Chr(10) & sCommentText2
                ActiveCell.Comment.Visible = False
                ActiveCell.Comment.Shape.AutoShapeType = msoShapeRoundedRectangle                    
                'Format lines of text
                    With ActiveCell.Comment.Shape.TextFrame
                            .Characters.Font.ColorIndex = 5
                    End With
                Else
                MsgBox "Nothing found"
            End If
'End Loop
ActiveCell.Offset(RowOffset:=1, ColumnOffset:=0).Select
Next i
  'Resize Comment to fit text
  'posted by Dana DeLouis  2000-09-16
  Dim MyComments As Comment
  Dim lArea As Long
  For Each MyComments In ActiveSheet.Comments
    With MyComments
      .Shape.TextFrame.AutoSize = True
      If .Shape.Width > 300 Then
        lArea = .Shape.Width * .Shape.Height
        .Shape.Width = 300
        ' An adjustment factor of 1.1 seems to work ok.
        .Shape.Height = (lArea / 200) * 0.6
      End If
    End With
  Next ' comment

End Sub