You and your teammate are editing the same Google Sheet simultaneously. You enter =SUM(A1:A3) in cell B1. Your teammate adds values 2, 4, and 6 in cells A1, A2, and A3 respectively at the same time.
What will be the value shown in cell B1 immediately after your teammate finishes entering the numbers?
Think about how formulas update when data changes in real time.
Google Sheets updates formulas instantly when collaborators change data. Since the sum of 2 + 4 + 6 is 12, cell B1 will show 12 immediately.
In a shared Google Sheet, cell B2 contains the formula =A2*$C$1. If you copy this formula down to B3, what will be the formula in B3 and what value will it calculate if A3=5 and C1=10?
Remember how absolute references with $ signs behave when copied.
The relative reference A2 changes to A3 when copied down, but the absolute reference $C$1 stays fixed. So the formula in B3 is =A3*$C$1. With A3=5 and C1=10, the result is 5*10=50.
You want to analyze how many times each collaborator edited a shared Google Sheet. Which feature or method allows you to see the edit history and identify collaborators' changes?
Think about where Google Sheets stores past versions and edits.
The Version History feature shows all changes made, who made them, and when. FILTER, IMPORTRANGE, and QUERY do not track edit history or collaborators.
Your team is entering sales data in different sheets within the same Google Sheets file. You want to create a summary sheet that automatically adds all sales from sheets named 'Jan', 'Feb', and 'Mar'. Which function is best to aggregate this data dynamically?
Think about referencing multiple sheets dynamically in one formula.
INDIRECT allows dynamic references to sheet names, so combined with SUM it can aggregate data from multiple sheets. SUM with direct references is static and requires manual updates. IMPORTRANGE is for different files. QUERY can combine ranges but is less flexible for dynamic sheet names.
Two collaborators edit the same Google Sheet at the same time. Collaborator A changes cell A1 from 10 to 20. Collaborator B changes cell A2 from 5 to 15. Cell B1 contains the formula =A1 + A2. What value will cell B1 show after both edits are saved?
Consider how Google Sheets updates formulas with multiple simultaneous edits.
Google Sheets recalculates formulas instantly with all current cell values. After both edits, A1=20 and A2=15, so B1 = 20 + 15 = 35.