Skip to content

Commit

Permalink
Create README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Mytherin authored May 25, 2024
1 parent 391b36d commit abc74e2
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# DuckDB Excel Extension

This extension adds support for the [`TEXT` function](https://support.microsoft.com/en-us/office/text-function-20d5ac4d-7b94-49fd-bb38-93d29371225c) for formatting numbers from Microsoft Excel.

Example usage:

```sql
SELECT text(1234567.897, '$#.##') AS result;
┌────────────┐
│ result │
varchar
├────────────┤
│ $1234567.9
└────────────┘
```

0 comments on commit abc74e2

Please sign in to comment.