在 Google 工作表 URL 公式中为 Google 日历添加单元格引用
Add cell reference in Google Sheets URL formula for Google Calendar
我有一个包含日期的 sheet,我想将它们添加到 Google Calander 但无法使 HYPERLINK 中的单元格引用起作用?另外,日期格式可以吗?
=HYPERLINK("https://calendar.google.com/calendar/render?action=TEMPLATE&text="a7"&dates="b7"&details=&location=")
A7 = 示例
B7 = 2022 年 1 月 13 日
A7 的格式为文本,B7 的格式为日期。
谢谢!
以下内容将使 link 正常工作。请注意,您需要在日期上工作才能在正确的日期创建活动。
只需在单元格引用周围添加与号 (&) 字符即可进行串联。
=HYPERLINK("https://calendar.google.com/calendar/render?action=TEMPLATE&text="&a7&"&dates="&b7&"&details=&location=")
我有一个包含日期的 sheet,我想将它们添加到 Google Calander 但无法使 HYPERLINK 中的单元格引用起作用?另外,日期格式可以吗?
=HYPERLINK("https://calendar.google.com/calendar/render?action=TEMPLATE&text="a7"&dates="b7"&details=&location=")
A7 = 示例 B7 = 2022 年 1 月 13 日
A7 的格式为文本,B7 的格式为日期。
谢谢!
以下内容将使 link 正常工作。请注意,您需要在日期上工作才能在正确的日期创建活动。
只需在单元格引用周围添加与号 (&) 字符即可进行串联。
=HYPERLINK("https://calendar.google.com/calendar/render?action=TEMPLATE&text="&a7&"&dates="&b7&"&details=&location=")