Getting started with xlbridge in Python
Writing your first server
-
Download and install the XlBridge Excel add-in from https://xlbridge.qaplix.se.
-
Install the pip package.
pip install xlbridge
-
Create a new Python file
testserver.py
with the following content:import xlbridge as bridge def pysum(x,y): return x+y server = bridge.server() server.add(pysum) server.run()
-
Run the Python file:
python testserver.py
-
The new Excel formula
PYSUM
should be available in Excel in a few seconds.