Paste append string to cell

mpo1978

New Member
Joined
Dec 2, 2017
Messages
4
Hi,

I have written a process that will populate a template sheet with string data data (names) from a source sheet. It works fine. However, there can be more than one name in a target cell. So I'd like the process to append any strings to the cell if it is not empty, separated with a comma and space.

So instead of "ABC" it will read "ABC, DEF".

So I guess I need to add this logic to my code but I'm not sure how:

If the target cell is empty, continue, otherwise append.

Here is my code so far:

Sub ListwithLoop()
'Clears the values out of the target range
Sheets("Pet Eng").Range("PetEngDataClear").ClearContents
'Clears the cell background colour from the target range
Sheets("Pet Eng").Range("PetEngDataClear").Cells.Interior.Pattern = xlNone
Dim counter As Integer
For counter = 1 To 25
'For counter = 1 To Worksheets("R ratings").Range("R:R").Cells.SpecialCells(xlCellTypeConstants).Count
'Only proceed if the Team and Rating columnd are not empty
If Not IsEmpty(Worksheets("R ratings").Range("H1").OFFSET(rowOffset:=counter, columnOffset:=0).Value) Then
If Not IsEmpty(Worksheets("R ratings").Range("R1").OFFSET(rowOffset:=counter, columnOffset:=0).Value) Then
Worksheets("R ratings").Select
Range("A1").OFFSET(rowOffset:=counter, columnOffset:=0).Select
Selection.Copy
Sheets("Pet Eng").Select
Range("E11").OFFSET(rowOffset:=(Worksheets("R ratings").Range("B1").OFFSET(rowOffset:=counter, columnOffset:=0)), columnOffset:=(Worksheets("R ratings").Range("C1").OFFSET(rowOffset:=counter, columnOffset:=0))).PasteSpecial Paste:=xlPasteValues
ActiveCell.Interior.ColorIndex = 4
End If
End If
Next counter
End Sub

Any help would be much appreciated.

Cheers
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
Not sure if I've understood you correctly, but try this (untested) code
Code:
Sub ListwithLoop()
    
    Dim DestRng As Range
    Dim counter As Long
    
    With Worksheets("R ratings")
        'Clears the values out of the target range
        Sheets("Pet Eng").Range("PetEngDataClear").ClearContents
        'Clears the cell background colour from the target range
        Sheets("Pet Eng").Range("PetEngDataClear").Cells.Interior.Pattern = xlNone
        For counter = 1 To 25
            If Not IsEmpty(.Range("H1").Offset(counter).Value) Then
                If Not IsEmpty(.Range("R1").Offset(counter).Value) Then
                    Set DestRng = Sheets("Pet Eng").Range("E11").Offset((.Range("B1").Offset(counter)), (.Range("C1").Offset(counter)))
                    If Len(DestRng.Value) = 0 Then
                        DestRng.Value = .Range("A1").Offset(counter)
                    Else
                        DestRng.Value = DestRng.Value & ", " & .Range("A1").Offset(counter)
                    End If
                    DestRng.Interior.ColorIndex = 4
                End If
            End If
        Next counter
    End With
End Sub
 
Upvote 0
Glad to help & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,216,077
Messages
6,128,684
Members
449,463
Latest member
Jojomen56

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top