Sample Data
This sheet shows names and their scores. Multiple users can edit these cells at the same time, and changes appear instantly for everyone.
| Cell | Value |
|---|---|
| A1 | Name |
| B1 | Score |
| A2 | Alice |
| B2 | 85 |
| A3 | Bob |
| B3 | 90 |
| A4 | Carol |
| B4 | 78 |
This sheet shows names and their scores. Multiple users can edit these cells at the same time, and changes appear instantly for everyone.
| Cell | Value |
|---|---|
| A1 | Name |
| B1 | Score |
| A2 | Alice |
| B2 | 85 |
| A3 | Bob |
| B3 | 90 |
| A4 | Carol |
| B4 | 78 |
=SUM(B2:B4)A B +-------+-------+ 1 | Name | Score | +-------+-------+ 2 | Alice | 85 | <-- referenced +-------+-------+ 3 | Bob | 90 | <-- referenced +-------+-------+ 4 | Carol | 78 | <-- referenced +-------+-------+
A B C +-------+-------+-------+ 1 | Name | Score | Total | +-------+-------+-------+ 2 | Alice | 85 | | +-------+-------+-------+ 3 | Bob | 90 | | +-------+-------+-------+ 4 | Carol | 78 | 253 | <-- Result of =SUM(B2:B4) +-------+-------+-------+