File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed
Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff 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 
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+
4956To continue move onto the [next tutorial](./ Addin02.md).
You can’t perform that action at this time.
0 commit comments