I have 3 columns A, B, C and I want to make a column D with values in A, B, C but it should include ">=", "<=" signs as well. The script I am working on does help me loop around columns and copy its data to a new column. Can anyone help me figure out how I can add those special characters at the beginning of the numbers in the cells? Thanks for any help.
Sub Try()
With ActiveWorkbook.Sheets("Sheet1")
For rw = 1 To .Rows.Count
If (.Rows(rw).Columns("A:A").Value <> "") Then
.Rows(rw).Columns("A:A").Copy .Range("D" & rw)
End If
Next rw
.Columns("A:A").Delete
End With
End Sub



>=and<=are not in the data currently? You want to go through the pasted data, and add>=or<=to that data? How do you know what cell gets what sign? I would just loop through each cell in the copied range, adding the symbols, no?A, we add >=, if its columnBits <= and if its columnC, no sign is added. @PowerToYou, you can achieve this with formulas, is there a reason why you want to achieve this with VBA?