【发布时间】:2017-09-27 22:57:22
【问题描述】:
我在 Excel 中有一个 3 x 3 的范围,它被定义为一个范围。我想知道双击任何蓝色单元格时用户点击了哪里。 - 该区域被定义为一个范围。
我试图创建一个函数来找出这个选择,但这对我的基本技能来说有点困难。
我的想法是为矩阵中的每个单元格分配一个整数值 (1 - 9),并具有一个返回该值的函数。
根据提供的答案编辑问题
Function relRange(rangeIn As Range, activeCell) As Integer
relRange = 0
If (rangeIn.Rows.Count = 6) And (rangeIn.Columns.Count = 6) Then ' range has double merged cells
' comparison code to determine where the activecell is relative to the 3x3 array
If rangeIn.Cells(5, 1).Address = activeCell Then relRange = 1 '1
If rangeIn.Cells(3, 1).Address = activeCell Then relRange = 2 '2
If rangeIn.Cells(5, 3).Address = activeCell Then relRange = 3 '3
If rangeIn.Cells(3, 3).Address = activeCell Then relRange = 4 '4
If rangeIn.Cells(1, 1).Address = activeCell Then relRange = 5 '5
If rangeIn.Cells(5, 5).Address = activeCell Then relRange = 6 '6
If rangeIn.Cells(1, 3).Address = activeCell Then relRange = 7 '7
If rangeIn.Cells(3, 5).Address = activeCell Then relRange = 8 '8
If rangeIn.Cells(1, 5).Address = activeCell Then relRange = 9 '9
End If
End Function
我现在有这个功能,很惊讶没有更简单的方法。
【问题讨论】:
标签: excel spreadsheet vba