Anaconda Code empowers you to write Python or R code and run it locally, directly within Excel. This gives you flexibility and control over the environment in your workbook, allowing you to add and remove packages as needed, all while keeping code and data securely within your workbook. Anaconda Code operates independently of Microsoft’s Python in Excel feature.

Initializing Anaconda Code

Anaconda Code is included in the Anaconda Toolbox installation.

When you first launch Anaconda Code, you’ll be asked to sign in to your Anaconda account.

If you haven’t created an Anaconda Code cell yet, you’ll be asked to create one.

To get started, choose the language for your new Anaconda Code cell, set the default link mode, select the default output mode, and then click Create Code Cell.

Once you’ve selected a location for your new Anaconda Code cell, use the editor to start writing and running code.

Understanding Anaconda Code

Let’s take a look at the different elements within Anaconda Code using the Home tab for reference:

Imports and Definitions

Customize the code that affects all code in your workbook and view script logs

Environment

Account

View profile, subscriptions, sign out, and app details

Help

Access bug reporting, documentation, community forums, and privacy policy links

Active Code Cell Reference

The active code cell where your code will run

Linking

Toggle cell linking between isolated and linked modes

Cell Output

Choose whether to output cell values as an Excel value or an Anaconda Code object

Language

Select Python or R for the code cell

Delete

Delete the code cell

Copy

Copy the contents of the code editor

REF

Create a reference to data in the worksheet.

Run

Run the code in the active code cell

Running code

Create an Anaconda Code cell that can run Python or R code using the following steps:

  1. From Home, click , then select a cell where you want to insert your code.

    If you’re already in the code editor, select more next to the active code cell reference, then Add New to create a new code cell.

    Subsequent code cells will be in the same language as the previously created one. To change the language, first create a new code cell, then change the code cell’s language selection in the code editor.

  2. Set the cell linking and output options.

  3. Select Python or R as the code language for the cell.

    If you change the language for the cell to a language you haven’t yet used, you might need to click Load Environment to load the new language’s environment for the first time.

  4. Enter your code in the code editor.

  5. (Optional) If you want to reference a range of data from your spreadsheet or an Anaconda Code object in your code, click REF, then select the range of cells or Anaconda Code cell.

  6. Click Run. The cell will display the return value of the last evaluated expression. Your changes are automatically saved whenever you re-run the code.

    If you write code that doesn’t have a return value (for example, you define a function but don’t call the function) and click Run, the cell will display </>NoneType.

Editing code

Do not edit your code in the cell itself; instead, modify and re-run your code directly in Anaconda Code.

An Anaconda.com account is required for users to edit shared code.

  1. From the Home page, click more on the code you want to edit.
  2. Click Edit in full view to open the edit view.
  3. Adjust your code, then click Run.

Managing the environment

Anaconda Code hosts a single, self-contained environment, which manages the back-end software packages that enable you to run Python or R code within your Excel workbook. You can manage software packages within this environment to extend your code’s processing, visualization, and analytical capabilities, and even select the version of Pyodide (the WASM engine used by PyScript) or WebR (the WASM engine used by WebR) that you want to run.

Choosing a Pyodide or WebR version

The latest version of Pyodide or WebR is used by default for all new spreadsheets. For existing spreadsheets, the Pyodide or WebR versions and packages necessary for your code are pinned to the environment.

You can switch versions using the following steps:

  1. From the Environment tab, click Edit.
  2. Select the Pyodide or WebR version.
  3. Click Save Changes.

A warning will appear if changing the version might result in conflicts with the installed packages. Click Confirm Update to proceed or Cancel to revert to the previously selected version.

Managing software packages

  1. From the Environment tab, click Edit.
  2. To add new packages, click Add.
  3. (Optional for Python) Click the down arrow to add from either PyPI, the PyScript app, or a direct download link to a Python wheel (.whl).
  4. Search for the package name, then click Add beside the package you want to add.
  5. Once you’ve added all the packages you want to include, click Add Packages.

Packages that contain compiled code might not be compatible with the PyScript or R WASM engine. For more information, visit PyScript.net or r-wasm.org.

To remove a package, click Edit, then click Delete beside the package you want to remove.

Customizing code initialization

You can think of Anaconda Code’s Imports and Definitions as an initialization file for your code or like the first cell in a Jupyter Notebook. All code in this section is available to all cells, whether they are run isolated or linked.

Creating user-defined functions in Python

This feature is not currently available for R.

User-defined functions (UDFs) allow you to write Python functions, decorate them, and call them directly from an Excel cell.

Creating and calling a UDF

  1. From the Imports and Definitions tab, decorate a function with @UDF, as shown in the following example:

    @UDF
    def my_custom_function(x, y):
        return x ** y
    
  2. Click Apply.

  3. In an open cell, enter =ANACONDA. If you added the example above to your definitions list, the option to call ANACONDA.MY_CUSTOM_FUNCTION appears in the dropdown.

  4. Arrow down to ANACONDA.MY_CUSTOM_FUNCTION, press Tab, and then complete the function.

  5. Use Ctrl+Enter (Windows)/Ctrl+Return (macOS) to run the code.

If you’d prefer the UDF uses a name other than the function name, use the name argument to provide a unique name. Set nested to False to remove ANACONDA. from the name.

@UDF(name="MYBANK.PORTFOLIO_ANALYSIS", nested=False)
def my_custom_function(x, y):
    return x ** y

Using Range arguments

Specifying a UDF.Range argument tells Excel that the input or output of the function is a 2D range. Without specifying this, Excel refuses to pass a range of cells as input or allow a spilled range to be returned from the function.

Example usage of UDF.Range:

@UDF
def square_me(data: UDF.Range) -> UDF.Range:
    return [[val ** 2 for val in row] for row in data]

You can also add type hints for ranges. For example,UDF.Range[str].

Modifying workbook settings

While you can adjust the settings for running code in your workbook on a case-by-case basis when creating and editing code, you can also assign default settings from the Settings tab.

Cell linking

ModeDescription
Run IsolatedCode runs independently of other cells. Variables declared in previous Anaconda Code cells cannot be referenced. Other cells can reference the return value through the REF function.
Run LinkedAnaconda Code cells run in row major order, comparable to how Python in Excel is executed. Variables declared in one cell can be referenced in cells following the cell that initializes them. When one cell is calculated, all linked cells recalculate in order. Linked cells run left-to-right, top-to-bottom, and can access objects defined in previously linked cells.

Cell output

OutputDescription
Excel ValuesWhen outputting a DataFrame, array, list, etc., the values will “spill” to fill the required space. If the spill were to overwrite cells containing data, the cell displays a #SPILL error.
Local Code ObjectFor certain object types, you can view the contents in a “Card View” by clicking the cell. You can reference this cell and the returned object like you would any other object.

Troubleshooting

If you encounter an issue that is not listed here, you can obtain support for Anaconda through the Anaconda community forums or by opening a support ticket.

Error installing functions

Was this page helpful?