G
Gustaf
I wonder if it's possible when adding data to cells using VBA, to have one actual value (as seen in the Formula Bar) and another value that is displayed in the cell? I tried the Range.Value and Range.Text properties, but Range.Text won't work.
Range("D2").Value = "value"
Range("D2").Text = "text"
Row 2 gives error 424, object required. What kind of object does Text want?
Gustaf
Range("D2").Value = "value"
Range("D2").Text = "text"
Row 2 gives error 424, object required. What kind of object does Text want?
Gustaf