1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
.. SPDX-License-Identifier: BSD-2-Clause
Copyright 2013-2023, John McNamara, jmcnamara@cpan.org
.. _ex_lambda:
Example: Excel 365 LAMBDA() function
====================================
This program is an example of using the new Excel ``LAMBDA()`` function. It
demonstrates how to create a lambda function in Excel and also how to assign a
name to it so that it can be called as a user defined function. This
particular example converts from Fahrenheit to Celsius.
See the :ref:`formula_lambda` section of the documentation for more details.
.. image:: _images/lambda01.png
.. literalinclude:: ../../../examples/lambda.py
|