What is the best way to convert a range of cells to a string? I have a function that only takes a string as input so I need to convert the range to a string, while retaining
There is a much easier way. Assuming the variable rng is a range, then writing:
rng = Left(rng,Len(rng))
will miraculously turn rng into a string.