An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

# Excel Formula Beautifier

![banner](./banner.svg)

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.

![excel_formatter](images/demo.gif)

## Source

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