我在Excel中有以下表格設置。我期待填補與數組公式表,我已經在B列中試驗成功Excel FormulaR1C1和FormulaArray
下面的代碼自動填充表格的剩餘部分,但與數組公式,只是用公式,所以它不會返回所需的結果。我如何改變它以便數組公式被傳播?
請注意,用戶數量會發生變化,因此範圍的動態計算是一個固定的要求。
Dim LastCol As Long, LastRow As Long
LastCol = Cells(2, Columns.Count).End(xlToLeft).Column
LastRow = Cells(Rows.Count, "B").End(xlUp).Row
Range("B3", Cells(LastRow, LastCol)).FormulaR1C1 Range("B3").FormulaR1C1
你可以把一個一次數組公式中的數組公式。或者,使用VBA的[Range.FillDown方法](https://msdn.microsoft.com/en-us/library/office/ff838404.aspx)和[Range.FillRight方法](https://msdn.microsoft.com /en-us/library/office/ff837984.aspx)。 – Jeeped