Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

In Google Sheets how to reference infinite rows in column?

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 there notation or a symbol that represents an infinite range, or every row that could possibly be in a column?

Something like $A! or whatever?

like image 813
blakev Avatar asked Dec 11 '17 15:12

blakev


People also ask

How do I get rid of infinite rows and columns in Google Sheets?

To delete them, right-click on any of them, and from the drop-down menu choose Delete.


2 Answers

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)

like image 179
Petrichor Avatar answered Sep 18 '22 13:09

Petrichor


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)
like image 38
Tom Sharpe Avatar answered Sep 22 '22 13:09

Tom Sharpe