Skip to content

Commit c4bb93a

Browse files
committed
Update README.md
1 parent 6b39886 commit c4bb93a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,11 +77,11 @@ VBA expressions can evaluate matrix functions whose arguments are given as array
7777

7878
If the user needs to evaluate a function that accepts more than one argument, including more than one array, all arrays arguments must be passed surrounded by parentheses "({...})". For example, a function call that emulates the SQL IN statement using an array argument and a reference value can be written as follows.
7979

80-
`IN_(({{sin(atn(1)\*2); 2; 3; 4; 5}});1)`
80+
`IN_(({{sin(atn(1)*2); 2; 3; 4; 5}});1)`
8181

8282
The above will pass this array of strings to the `IN_` function:
8383

84-
`\[{{1;2;3;4;5}}\] \[1\]`
84+
`[{{1;2;3;4;5}}] [1]`
8585

8686
However, matrix functions need to take care of creating arrays from a string, the ArrayFromString method can be used for this purpose.
8787

0 commit comments

Comments
 (0)