我需要在VBA中的一个单元格中创建公式SUM,但我不知道我需要对哪个列字母求和。我知道名称列等于“ AMOUNT”,而该行位于第25行的标题。
Sample: The column J line 25 has the header "Amount", so my formula needs to be equal below:
Range("N22").Select
ActiveCell.FormulaLocal = "=SUM(J26:J999999)"
因此,我需要VBA中的代码才能找到要在下面的公式中输入的字母J。
Range("N22").Select
ActiveCell.FormulaLocal = "=SUM(J26:J999999)"