Hi,
I have this value (95551092 - ) in the activecell and I would like to add whatever value is in cell A50.
I do have the following code which adds the value but it deletes the spaces and then moves the hyphen in front of the numbers.
Is there a way of adding the data and keeping the values the same?
Thanks
Dan
I have this value (95551092 - ) in the activecell and I would like to add whatever value is in cell A50.
I do have the following code which adds the value but it deletes the spaces and then moves the hyphen in front of the numbers.
Code:
Sub test()
Dim d As Double
d = ActiveCell.Value
ActiveCell = d & Range("A50").Value
End Sub
Is there a way of adding the data and keeping the values the same?
Thanks
Dan