summaryrefslogtreecommitdiff
path: root/cell.go
diff options
context:
space:
mode:
authorxuri <xuri.me@gmail.com>2022-03-30 00:01:38 +0800
committerxuri <xuri.me@gmail.com>2022-03-30 00:01:38 +0800
commit29d63f6ae0a3411be7e9799c80e6be41997c4f14 (patch)
tree86067ba9fd11e5b6f5800fc154f930474c1576d3 /cell.go
parent0030e800ca1e151483db96172034122c86ce97fc (diff)
ref #65, new formula functions: HYPGEOM.DIST and HYPGEOMDIST
Diffstat (limited to 'cell.go')
-rw-r--r--cell.go9
1 files changed, 6 insertions, 3 deletions
diff --git a/cell.go b/cell.go
index 4b76271..b2818e7 100644
--- a/cell.go
+++ b/cell.go
@@ -672,9 +672,12 @@ type HyperlinkOpts struct {
// SetCellHyperLink provides a function to set cell hyperlink by given
// worksheet name and link URL address. LinkType defines two types of
-// hyperlink "External" for website or "Location" for moving to one of cell
-// in this workbook. Maximum limit hyperlinks in a worksheet is 65530. The
-// below is example for external link.
+// hyperlink "External" for website or "Location" for moving to one of cell in
+// this workbook. Maximum limit hyperlinks in a worksheet is 65530. This
+// function is only used to set the hyperlink of the cell and doesn't affect
+// the value of the cell. If you need to set the value of the cell, please use
+// the other functions such as `SetCellStyle` or `SetSheetRow`. The below is
+// example for external link.
//
// if err := f.SetCellHyperLink("Sheet1", "A3",
// "https://github.com/xuri/excelize", "External"); err != nil {