在EXCEL里如何得到当前区域(不是当前单元格)

比如用户选择一个区域后,按一个按钮,我要读取这个区域里的数据。
为什么一次只能给100分啊。真无聊。我的可用分太多了。
[76 byte] By [bighead-bighead1997] at [2007-12-16]
# 1
Selection.Areas
Penies1 at 2007-10-23 > top of Msdn China Tech,其他开发语言,Office开发/VBA...
# 2
selection.address
sxfwang at 2007-10-23 > top of Msdn China Tech,其他开发语言,Office开发/VBA...
# 3
将选择范围的值付给一个数组

Private Sub CommandButton1_Click()
Dim Ra As Variant
Ra = Selection.Value
End Sub
yangzhaoyu-老妖 at 2007-10-23 > top of Msdn China Tech,其他开发语言,Office开发/VBA...
# 4
好,给分!
bighead-bighead1997 at 2007-10-23 > top of Msdn China Tech,其他开发语言,Office开发/VBA...