What's the meaning and usage of "&" in the following piece of code?
Set Rng = Range("a1", Range("h" & Rows.Count).End(xlUp))
& is the string concatenation operator in VBA. So if Rows.Count = 10 then "h" & Rows.Count would produce a string that contains "h10".
&
Rows.Count
"h" & Rows.Count
Sign up using Google
Sign up using Facebook
Sign up using Stack Exchange
By posting your answer, you agree to the privacy policy and terms of service.
tagged
asked
7 months ago
viewed
169 times
active