How can i set a formula into a ceil wich works on every lang ? (SUM, ROUND..) #359

Closed
opened 2016-01-28 16:18:50 +00:00 by wawanopoulos · 1 comment
wawanopoulos commented 2016-01-28 16:18:50 +00:00 (Migrated from github.com)

I search a way to add into a ceil a formula like : ROUND((A1*B1);2)
If i put this line it will works fine if Excell is in English. But how can i do to modify this formula to be able to make this ROUND function for all Excell languages ?

I search a way to add into a ceil a formula like : ROUND((A1*B1);2) If i put this line it will works fine if Excell is in English. But how can i do to modify this formula to be able to make this ROUND function for all Excell languages ?
SheetJSDev commented 2017-04-01 04:21:51 +00:00 (Migrated from github.com)

You have to write the formula in the "English" style, with English names (e.g. ROUND) and commas to separate arguments. The correct formula in this case is:

ROUND((A1*B1), 2)

And this should do the right thing in other languages.

You have to write the formula in the "English" style, with English names (e.g. ROUND) and commas to separate arguments. The correct formula in this case is: ``` ROUND((A1*B1), 2) ``` And this should do the right thing in other languages.
Sign in to join this conversation.
No Milestone
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: sheetjs/sheetjs#359
No description provided.