我正在尝试确定是否可以在Excel中编写以下计算,其中n是可变的并且来自用户输入。 n的值为正且等于或大于1.是否可以编写公式而不是使用vba。
2^1 + 2^2 + 2^3 + ...... + 2^n
If n = 1 then the calculation would be 2^1
If n = 2 then the calculation would be 2^1 + 2^2
If n = 3 then the calculation would be 2^1 + 2^2 + 2^3
是否可以编写适用于任何n
值的公式由于
答案 0 :(得分:4)
使用SUMPRODUCT
=SUMPRODUCT(2^ROW(INDEX(A:A,1):INDEX(A:A,A1)))
其中A1是用户将输入所需数字的单元格。
答案 1 :(得分:1)
试试这个公式:
=2^(A1+1)-2