Hi,
I'm having an issue with concatnation. I'm trying to take an active cell and add a "-" sign behind it. This is my code, but I keep getting an "object required" error.
Dim b As Variant
Set b = ActiveCell.Value
Dim neg As String
Set neg = "-"
Dim A As Range
Set A = ActiveCell.Select
A = b & neg
Please help! Thanks!
I'm having an issue with concatnation. I'm trying to take an active cell and add a "-" sign behind it. This is my code, but I keep getting an "object required" error.
Dim b As Variant
Set b = ActiveCell.Value
Dim neg As String
Set neg = "-"
Dim A As Range
Set A = ActiveCell.Select
A = b & neg
Please help! Thanks!