https://github.com/cavo789/excel_formatter
Improves the readability of Excel formulas. Display long formula into a nice HTML output
https://github.com/cavo789/excel_formatter
beautify code-beautify excel formula
Last synced: 3 months ago
JSON representation
Improves the readability of Excel formulas. Display long formula into a nice HTML output
- Host: GitHub
- URL: https://github.com/cavo789/excel_formatter
- Owner: cavo789
- License: mit
- Archived: true
- Created: 2018-10-29T20:29:32.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2022-02-08T14:52:10.000Z (over 3 years ago)
- Last Synced: 2025-07-19T12:57:08.083Z (3 months ago)
- Topics: beautify, code-beautify, excel, formula
- Language: JavaScript
- Homepage: https://excel-formatter.avonture.be/
- Size: 223 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - cavo789/excel_formatter - Improves the readability of Excel formulas. Display long formula into a nice HTML output (JavaScript)
README
# Excel Formula Beautifier

Improves the readability of Excel formulas. Display long formula into a nice HTML output
Display
```
=IF(ISNA(VLOOKUP("Value";G1:K11;1;FALSE));"Not found";"Found")
```as
```
=IF(
ISNA(
VLOOKUP(
"Value";
G1:K11;
1;
FALSE
)
);
"Not found";
"Found"
)
```## How to use
Just copy/paste your Excel formula into the text box as illustrated here below and click on the `Beautify` button.
Parameter `Excel formula delimiter`: depending on your settings, the delimiter in Excel can be a comma `,` or a semi-colon `;`. If needed, update the delimiter.

## Source
The `excelFormulaUtilitiesJS` script has been written by `Josh Bennett` and available on GitHub: https://github.com/joshbtn/excelFormulaUtilitiesJS.