此问题使用以下数据,这些数据将在固定单元格范围内手动自适应 - B 列范围中的每个单元格都包含一个公式。它旨在从基础公式单元格中找到最后一个数据单元格。
我想找到公式范围 B2:B11 中数据的最后一个公式单元格,并从最后一个单元格创建一个动态中位数,上面有四个单元格。中值应输出到单元格 F6——结果为 9。这是一个动态练习。鉴于下面的代码,关于如何最有效地做到这一点的任何想法?
Sub OutputMedian()
Dim FunctionRange As Range
'Represents a fixed range with function in B2:B11
Set FunctionRange = Worksheets("Sheet1").Range("B2:B11")
'Must start median calc from B9, as it's the last cell with function output data
'Must store Median from last data cell, using 5 cell offset (see output from cell F2)
'Must output the Final (e.g., median output of 9 here) to cell F6
End Sub