most
Board Regular
- Joined
- Feb 22, 2011
- Messages
- 107
- Office Version
- 365
- 2019
- Platform
- Windows
- Mobile
Can anybody explain why this happens?
With the third case I expect the result to be
$A$12
$B$13
not
$A$12
$A$13
The grey areas are the cells I've been selected with Ctrl-button.
With the third case I expect the result to be
$A$12
$B$13
not
$A$12
$A$13
Code:
Sub Sel()
Debug.Print "C:" & Selection.Count
Debug.Print Selection(1).Address
Debug.Print Selection(2).Address
Debug.Print "---"
End Sub
The grey areas are the cells I've been selected with Ctrl-button.