In Google Sheets how to reference infinite rows in column?

后端 未结 2 2258
萌比男神i
萌比男神i 2021-02-19 22:44

If I want to reference a span of rows I can do something like A1:A100. If I want to lock the column/row I can use $; $A1:$A100.

Is

相关标签:
2条回答
  • 2021-02-19 23:08

    Google sheets is more flexible, you can use the syntax

    =Sum(A2:A)
    

    or even

    =Sum(A2:C)
    

    You can also do the same with rows e.g.

    =Sum(B2:2)
    
    0 讨论(0)
  • 2021-02-19 23:13

    To reference an entire column you can use, for example:

     Sum(A:A)
    

    So I guess the syntax you are looking for is A:A

    Equally, if you want to use every piece of data in a column excluding the first, lets say 2, rows you can use A3:A (in google sheets only)

    0 讨论(0)
提交回复
热议问题