Wednesday 25 October 2017

excel - When I'm selecting a range how do I refer to the first selected cell of it and the last selected cell of it on VBA?

For example, let's say that I select the range A1:F1 in
Excel.



In VBA, how do I refer specifically to
the cell A1, to the cell F1 and to all the other cells that are within the
range?
Thanks so much.

No comments:

Post a Comment

php - file_get_contents shows unexpected output while reading a file

I want to output an inline jpg image as a base64 encoded string, however when I do this : $contents = file_get_contents($filename); print &q...