-
Notifications
You must be signed in to change notification settings - Fork 67
UPPER() not implemented #66
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Hmm, can you provide more detail? The function exists and the (single) unit test passes. |
A stripped-down example from the README reproduces the problem: import FormulaParser from 'fast-formula-parser';
const data = [
// A B C
['foo', 'bar', 'baz'], // row 1
];
const parser = new FormulaParser({
// retrieve cell value
onCell: (arg) => {
return data[arg.row - 1][arg.col - 1];
},
});
const position = { row: 1, col: 1, sheet: 'Sheet1' };
console.log(parser.parse('LOWER(Shee1!A1)', position));
console.log(parser.parse('UPPER(Shee1!A1)', position)); I've also seen that For completeness, this is the output of the script:
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The function
LOWER()
works as expected,UPPER()
does not:error: Function UPPER is not implemented.
The text was updated successfully, but these errors were encountered: