Skip to content

Commit 910bbc1

Browse files
aaronjnewmanclaude
andcommitted
Fix HYPERLINK formula not evaluating in Sheet (raw=False)
gspread's update() defaults to raw=True which stores formulas as plain text strings. Explicitly passing raw=False lets USER_ENTERED take effect so =HYPERLINK() cells render as clickable links. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent a429ddb commit 910bbc1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/push_to_sheet.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ def upsert_year_tab(sh, year: int, recs: list[dict], skip_format: bool) -> int:
322322
with_retry(
323323
f"update({title})",
324324
ws.update,
325-
values=rows, range_name="A1", value_input_option="USER_ENTERED",
325+
values=rows, range_name="A1", raw=False, value_input_option="USER_ENTERED",
326326
)
327327

328328
if not skip_format:

0 commit comments

Comments
 (0)