# \[ANN\] Write Excel files with XLSX.jl v0.2.0

**URL:** https://discourse.julialang.org/t/ann-write-excel-files-with-xlsx-jl-v0-2-0/11152
**Category:** Community
**Tags:** package, xlsx
**Created:** [May 25, 2018, 7:29pm UTC](https://discourse.julialang.org/t/ann-write-excel-files-with-xlsx-jl-v0-2-0/11152 "2018-05-25T19:29:52Z")
**Posts on this page:** 1
**Showing post:** 7

<div class="post-metadata">

### Author: ![Karajan](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/karajan/32/8545_2.png) [@Karajan](https://discourse.julialang.org/u/Karajan)
#### Post date: [August 13, 2019, 8:47am UTC](https://discourse.julialang.org/t/ann-write-excel-files-with-xlsx-jl-v0-2-0/11152/7 "2019-08-13T08:47:30Z")

</div>

Hi there!

It looks like this problem is not with XLSX but with this line

```julia
sheet["C2:C61"] = value.(B)

```

specifically the function `value` not being known as the ERROR message suggests: “no method matching `value(::Float64)`”. What was the function there for?

For me `sheet["C2:C61"]` wouldn’t work (although it did in an example) but replacing the above line with this:

```julia
sheet["C2", dim = 1] = B

```

seemed to work the way you intended it.

Finally, I think it could benefit your post if you read this [suggestions to improve posts for help](https://discourse.julialang.org/t/psa-make-it-easier-to-help-you/14757). In this case, for example, quoting your code, making sure it runs if someone want’s to try it (I happened to know I need to import `Distributions` but maybe that’s not the case for everyone), or creating a separate thread for your question.

Best of luck with your code!

---

_[View the full topic](https://discourse.julialang.org/t/ann-write-excel-files-with-xlsx-jl-v0-2-0/11152)._
