diff options
author | xuri <xuri.me@gmail.com> | 2021-09-06 00:01:42 +0800 |
---|---|---|
committer | xuri <xuri.me@gmail.com> | 2021-09-06 00:01:42 +0800 |
commit | 684603befa0fbde2ee8db704e37a544f9d92d99d (patch) | |
tree | 1b9318e7e008b78de5bb2b9342abd6290f67e408 /calc_test.go | |
parent | 32b23ef42d3ecb393e102c5f63ab5125db354435 (diff) |
This closes #993, closes #1014
- Fix formula percentages calculated incorrectly
- Make UpdateLinkedValue skip macro sheet
- Fix conditional format bottom N not working
Diffstat (limited to 'calc_test.go')
-rw-r--r-- | calc_test.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/calc_test.go b/calc_test.go index 4c32983..cd09e97 100644 --- a/calc_test.go +++ b/calc_test.go @@ -46,6 +46,8 @@ func TestCalcCellValue(t *testing.T) { "=2>=1": "TRUE", "=2>=3": "FALSE", "=1&2": "12", + "=15%": "0.15", + "=1+20%": "1.2", `="A"="A"`: "TRUE", `="A"<>"A"`: "FALSE", // Engineering Functions |