File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ Combine the power of clojure with all the LibreOffice calc features!!!
7
7
8
8
ClojureCalc is a wrapper for clojure 1.6 on libre office and possibly open office.
9
9
10
- [ Download v3.0 .0] ( https://github.com/beothorn/ClojureCalc/releases/download/3.0 .0/ClojureCalc.oxt )
10
+ [ Download v3.1 .0] ( https://github.com/beothorn/ClojureCalc/releases/download/3.1 .0/ClojureCalc.oxt )
11
11
====================
12
12
13
13
![ screenshot] ( http://i.imgur.com/JeGaBs4.png " ClojureCalc ")
18
18
Functions available
19
19
--------------------
20
20
21
- cljEval([ expression] )
21
+ cljEval([ expression] ;{ [ cell... ] | [ cell range ... ] } )
22
22
cljs([ expression] ;{[ cell...] |[ cell range ...] })
23
23
cljn([ expression] ;{[ cell...] |[ cell range ...] })
24
24
cljToRange([ expression] ;[ cell text] ;[ cell range] )
@@ -31,6 +31,8 @@ To run a clojure expression just call cljeval
31
31
Example:
32
32
Sum of two numbers
33
33
=CLJEVAL("(+ 1 2)")
34
+ or with arguments
35
+ =CLJEVAL("(+ {0} {1})";A1;A2)
34
36
35
37
Using values from other cells or cell range
36
38
---------------------
@@ -65,6 +67,11 @@ Writing to a cell matrix:
65
67
Using the value of a cell as the colletion:
66
68
=CLJTORANGE(A6;"Another cell text";A1: C2 )
67
69
70
+ Formatting a string
71
+ ---------------------
72
+ As a bonus you can format a string with arguments using strfmt:
73
+ =strfmt("Hello {0}";A1)
74
+
68
75
69
76
Common issues
70
77
---------------------
You can’t perform that action at this time.
0 commit comments