Skip to content

Commit

Permalink
Merge pull request #125 from dorssar/patch-2
Browse files Browse the repository at this point in the history
Update README.md
  • Loading branch information
Olivier Chédru authored Nov 2, 2020
2 parents 9332701 + 22ae4eb commit 6052ce3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,9 @@ ws.range(0, 0, 10, 10).style().shadeRows(Color.GRAY2, 5).set();

Note the cells with a formula do not have a value in the generated workbook.
```java
ws.formula(10, 0, "=SUM(A1:A10)");
ws.formula(10, 0, "SUM(A1:A10)");
// With Range.toString():
ws.formula(10, 0, "=SUM(" + ws.range(0, 0, 9, 0).toString() + ")");
ws.formula(10, 0, "SUM(" + ws.range(0, 0, 9, 0).toString() + ")");
```

### Additional worksheet features
Expand Down

0 comments on commit 6052ce3

Please sign in to comment.