summaryrefslogtreecommitdiff
path: root/sheet.go
diff options
context:
space:
mode:
authorxuri <xuri.me@gmail.com>2021-09-05 11:59:50 +0800
committerxuri <xuri.me@gmail.com>2021-09-05 11:59:50 +0800
commit32b23ef42d3ecb393e102c5f63ab5125db354435 (patch)
treee73ec4e2e062d15ca6d53407039ddb3004942995 /sheet.go
parent2616aa88cb2b1e45c03ada60093f4dfe7fabfb87 (diff)
This closes #998
- Support text comparison in the formula, also ref #65 - `GetCellValue`, `GetRows`, `GetCols`, `Rows` and `Cols` support to specify read cell with raw value, ref #621 - Add missing properties for the cell formula - Update the unit test for the `CalcCellValue`
Diffstat (limited to 'sheet.go')
-rw-r--r--sheet.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/sheet.go b/sheet.go
index 7e15bbe..be2e964 100644
--- a/sheet.go
+++ b/sheet.go
@@ -880,7 +880,7 @@ func (f *File) searchSheet(name, value string, regSearch bool) (result []string,
if inElement == "c" {
colCell := xlsxC{}
_ = decoder.DecodeElement(&colCell, &xmlElement)
- val, _ := colCell.getValueFrom(f, d)
+ val, _ := colCell.getValueFrom(f, d, false)
if regSearch {
regex := regexp.MustCompile(value)
if !regex.MatchString(val) {