pygsheets
pygsheets copied to clipboard
How to create multiple link in a single row
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();