I am calculating sum for multiple sheets in a workbook formula is as below
=SUM('Sheet1'!C11,'Sheet2'!C10,'Sheet3'!C11,'Sheet4'!C14)
The values being added are horizontal I tried adding $ sign infront of C11 it didnt work
I want to increment only Alphabet i.e C11 to D11 to AH11 C10 to D10 to AH10
=SUM('Sheet1'!D11,'Sheet2'!D10,'Sheet3'!D11,'Sheet4'!D14)
How do I achieve that?