nithinmurali / pygsheets

Google Sheets Python API v4
https://pygsheets.readthedocs.io/en/latest
Other
1.5k stars 220 forks source link

How to create multiple link in a single row #583

Open erwin-d-austria opened 1 year ago

erwin-d-austria commented 1 year ago

Is pygsheets can create multiple link in single cell like this on on google SpreadsheetApp.

const value = SpreadsheetApp.newRichTextValue() .setText("foo no baz") .setLinkUrl(0, 3, "https://bar.foo") .setLinkUrl(7, 10, "https://abc.xyz") .setTextStyle(7, 10, boldStyle) .build();