pygsheets icon indicating copy to clipboard operation
pygsheets copied to clipboard

How to create multiple link in a single row

Open erwin-d-austria opened this issue 1 year ago • 0 comments

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();

erwin-d-austria avatar Jun 05 '23 12:06 erwin-d-austria