Skip to content

Commit d760dd9

Browse files
committed
explained locale difference.
1 parent 9ced4c2 commit d760dd9

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

docs/tutorials/Addin01.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Next write your user-defined function in Python. In the previous step ExcelPytho
3636

3737
* Switch back to Excel and click 'Import Python UDFs' in the ExcelPython tab to pick up the changes made to `Book1.py`.
3838

39-
* Enter the formula `=DoubleSum(1; 2)` into a cell and you should get the correct result:
39+
* Enter the formula `=DoubleSum(1, 2)` or `=DoubleSum(1; 2)` depending on your Excel version's locale into a cell and you should get the correct result:
4040

4141
![image](https://cloud.githubusercontent.com/assets/5197585/3917596/e5365b3c-238e-11e4-8bce-0d97caceca2e.png)
4242

@@ -46,4 +46,11 @@ Next write your user-defined function in Python. In the previous step ExcelPytho
4646
?DoubleSum(1, 2)
4747
```
4848

49+
or
50+
51+
```
52+
?DoubleSum(1; 2)
53+
```
54+
55+
4956
To continue move onto the [next tutorial](./Addin02.md).

0 commit comments

Comments
 (0)