I am using Excel 2010.
I have the following macro which is used to concatenate the string with cell values.
Sub Mac1()
Dim cell As Range
For Each cell In Range("D3", Range("D65536").End(xlUp))
If cell.Value = "" Then
cell.Value = ""
Else
cell.Value = cell.Value & " Day"
End If
Next
End Sub
Note: Getting the string Day appended each and every time when i run the macro.
The expected result should be if the cell is empty then no string to be concatenate with the cell, if the cell is non empty then it should concatenate string Day at only one time with the cell value at the end.