我正在搜索一个VBA命令,该命令与find()
(或类似)一起返回固定列中找到的单元格的地址。
由于程序,我搜索的值只存在一次,但显然我只能返回它的值,而不是它的位置。
Set Cell = Selection.Find(What:=Choice, LookIn:=xlFormulas,_
LookAt:=xlWhole, SearchOrder:=xlByRows, SearchDirection:=xlNext,_
MatchCase:=False, SearchFormat:=False)
这可能是一个简单的问题,但非常感谢帮助!
答案 0 :(得分:2)
在代码后面写:
debug.print cell.row
debug.print cell.column