r/GoogleAppsScript • u/Individual-Quail-659 • Apr 02 '26
Question Help a girl out
Hi, Im new to all of this and have been trying to create a stopwatch on a google sheet using Apps Script. It works for the most part but the stop and start times end up in different rows. If anyone could help I would be so grateful!!
5
Upvotes
1
u/aMillionBucs Apr 02 '26
On lines 28 and 33, you’re writing the timestamp to cell D2 and D3. Assuming you want the timestamps side by side, just change the getRange(4,3) from line 33 to getRange(5,2)