Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions DEV_DOCS.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,9 @@ Each change to the production code (bugfixes, new features, improvements) must i
HF supports internationalization and provides the localized function names for all built-in languages. When looking for the valid translations for the new functions, try these sources:
- https://support.microsoft.com/en-us/office/excel-functions-translator-f262d0c0-991c-485b-89b6-32cc8d326889
- http://dolf.trieschnigg.nl/excel/index.php

For languages not officially supported by Microsoft Excel, the two sources above do not apply. For these languages, use Google Sheets as the reference. Switch the `hl` query parameter to the target locale, for example:

- https://support.google.com/docs/table/25273?hl=id (Indonesian)

For functions that Google Sheets does not list either, fall back to the English name (matching the convention used by Excel in unsupported locales).
6 changes: 6 additions & 0 deletions docs/guide/built-in-functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ It makes the page wider to accommodate large tables
.page:has(.widePage) .page-nav /* footer links to the next and prev page */ {
max-width: 1200px !important; /* override default max-width of 740px for this page */
}
/* Make wide tables horizontally scrollable on narrow screens */
.page:has(.widePage) table {
display: block !important;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
</style>

## Overview
Expand Down
8 changes: 7 additions & 1 deletion docs/guide/list-of-differences.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,20 @@ It makes the page wider to accommodate large tables
.page:has(.widePage) .page-nav /* footer links to the next and prev page */ {
max-width: 1200px !important; /* override default max-width of 740px for this page */
}
/* Make wide tables horizontally scrollable on narrow screens */
.page:has(.widePage) table {
display: block !important;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
</style>

See a full list of differences between HyperFormula, Microsoft Excel, and Google Sheets.

**Contents:**
[[toc]]

## General functionalities
## General functionalities

| Functionality | Examples | HyperFormula | Google Sheets | Microsoft Excel |
|----------------------------------------------------|---------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------|
Expand Down
Loading