Hey all,

I'm writing a formula to calculate a horizontal running total in a table. To do so, I need to be able to lock the first column but unlock the second column so that as the formula is dragged across the columns the sum range will expand. This is easy to do without table formulas, like so:

Formula: copy to clipboard
=SUM($A$1:A$1)


But I'm unsure what the syntax is for a table formula.

Unlocked:
Formula: copy to clipboard
=SUM([Table1[Column1]:[Column2])


When it is dragged to the right:

Formula: copy to clipboard
=SUM([Table1[Column2]:[Column3])


Locked:

Formula: copy to clipboard
=SUM([Table1[[Column1]:[Column2]])


When it is dragged to the right:

Formula: copy to clipboard
=SUM([Table1[Column1]:[Column2])


Ideally, I'd like Column1 to lock but Column2 to become Column3 when the formula is dragged to the right. Is this possible?