如何找到LOOKUP找到的单元格的地址,然后获取相应的单元格?

时间:2017-12-17 18:33:07

标签: excel excel-vba vba

所以这是一个新帖子,请看附加的屏幕转储。

minification

代码:

Sub FindFetch()

' Find the last non-zero value in Col A and then fetch the corresponding value

    ActiveSheet.Range("A3").Formula = "= LOOKUP(2,1/(A10:A26>0),A10:A26)"
     ' Fetch the value in the corresponding column C:
     ' xxx <- this is my problem, how to get there
    ActiveSheet.Range("Cxxx").Copy
    Range("C3").Select
    Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone, SkipBlanks:= _
        False, Transpose:=False

End Sub

非常感谢你。

1 个答案:

答案 0 :(得分:2)

&lt; pre&gt;&lt; code&gt; = LOOKUP(2,1 /(A10:A26&gt; 0),C10:C26) &LT; /代码&GT;&LT; /预&GT;