summaryrefslogtreecommitdiffstats
path: root/src/formats/xlsx.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/formats/xlsx.c')
-rw-r--r--src/formats/xlsx.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/formats/xlsx.c b/src/formats/xlsx.c
index 3918b1a..48e22f6 100644
--- a/src/formats/xlsx.c
+++ b/src/formats/xlsx.c
@@ -312,9 +312,10 @@ void get_sheet_data(xmlDocPtr doc, xmlDocPtr doc_strings, xmlDocPtr doc_styles)
) {
char * formula = (char *) child_node->xmlChildrenNode->xmlChildrenNode->content;
char * strf;
+ uppercase(formula);
// we take some excel common function and adds a @ to them
- // we replace count sum avg with @count, @sum, @prod, @avg, @min, @max
+ // we replace count sum avg with @count, @sum, @prod, @avg, @min, @max
strf = str_replace (formula, "COUNT","@COUNT");
strcpy(formula, strf);
free(strf);