CТУДИЯ НА ТАГАНКЕ БОЛЬШЕ НЕ РАБОТАЕТ
ВСЕ ИЗДЕЛИЯ, КОТОРЫЕ БЫЛИ СДЕЛАНЫ В СТЕНАХ ТАГАНКИ, МОЖНО ЗАБРАТЬ ИЗ НАШЕЙ СТУДИИ НА КИТАЙ-ГОРОДЕ  ПО АДРЕСУ СЕРЕБРЯНИЧЕСКИЙ ПЕР 6 

Build Neural Network With Ms Excel New New! May 2026

Building a neural network in Microsoft Excel has evolved from a manual "cell-by-cell" math exercise into a more automated process thanks to Python integration and AI-powered Copilot features introduced in late 2024 and 2025. 1. Modern Implementation Methods

You can now build a neural network using three primary "new" approaches:

Python in Excel (Recommended): Use the Python in Excel feature to call libraries like scikit-learn or PyTorch directly within a cell. This removes the need for complex VBA or manual formula chains.

LAMBDA & Dynamic Arrays: Use the LAMBDA, MAP, and REDUCE functions to create reusable "neuron" functions that process entire data arrays instantly.

Copilot "Agent Mode": As of late 2025, Microsoft Copilot's Agent Mode can generate the structure of a predictive model or neural network by simply describing the task in plain English. 2. Step-by-Step Build (Traditional Formula Approach)

If you prefer building from scratch to understand the mechanics, follow this standard architecture: Training a Neural Network in a Spreadsheet

While Microsoft Excel does not have a single native "Build Neural Network" button,

you can now build and run sophisticated neural networks using several new and integrated features available as of early 2026 1. Python in Excel (Recommended) The most powerful way to build a neural network is via the Python in Excel integration. How it works function to write actual Python code directly in cells. : You can import industry-standard libraries like TensorFlow to define and train models within your spreadsheet. : Prepare your data in a range, use Python to train a Sequential model, and output predictions back into cells. 2. Azure Machine Learning Functions

For organizations, data scientists can deploy deep neural network classifiers as custom functions. Microsoft Azure =AZUREML() function to access a catalog of pre-built AI models.

: This allows you to run high-performance models (e.g., satellite imagery classification) on spreadsheet data without local processing power. Microsoft Azure 3. "Shortcut" AI Integration (New for 2025/2026) Newer workflow tools like Shortcut.ai build neural network with ms excel new

allow for building complex architectures using natural language prompts. Shortcut AI Capability

: You can request a "transformer model architecture" or "attention mechanism" directly in a sidebar, and the tool will implement the component logic and connect layers within your Excel workbook. Shortcut AI 4. Native Formula Construction

If you prefer building without external tools, you can manually construct a neural network using Excel’s core mathematical functions: Forward Propagation =SUMPRODUCT()

to calculate the weighted sum of inputs and apply activation functions like =1/(1+EXP(-x)) for the Sigmoid function. Excel Solver

add-in to perform gradient descent by minimizing an error function (like MSE) while varying cell weights. Towards Data Science 5. Third-Party Frameworks Neural Network Regressor in Excel - Towards Data Science

In 2026, building a neural network in Microsoft Excel has shifted from a manual mathematical exercise to a highly automated process leveraging Microsoft Copilot and Python in Excel. While traditional spreadsheet modeling is still used for educational purposes, new agentic capabilities allow users to generate complex AI models using natural language. 1. The Modern Approach: Using Copilot and Python

The "new" way to build a neural network in Excel bypasses complex cell formulas by using Python in Excel. This integration, supported by Anaconda, allows users to run industry-standard libraries like scikit-learn or TensorFlow directly within the spreadsheet grid.

Step-by-Step with Copilot: Using the new "Plan Mode" in Edit with Copilot, you can prompt: "Build a multi-layer neural network using Python to predict sales based on this table.".

Agentic Execution: Copilot's Agent Mode will outline a step-by-step approach, including data cleaning, feature scaling, and model training, before executing the Python code for you. Building a neural network in Microsoft Excel has

Direct Python Entry: Alternatively, you can use the =PY function to manually write code that defines layers (nn.Linear, nn.ReLU) and trains the model using data referenced directly from your Excel ranges. 2. The Traditional Way: Building from Scratch (No-Code)

For those who want to understand the "math under the hood," you can still build a neural network using standard Excel formulas. This is typically done to visualize Forward Propagation and Backpropagation. Get started with Python in Excel - Microsoft Support

Building a Simple Neural Network with Microsoft Excel

Microsoft Excel is a widely used spreadsheet software that can be used for various tasks, including data analysis and visualization. While it's not a traditional choice for building neural networks, Excel can be used to create a simple neural network using its built-in functions and tools. In this article, we'll explore how to build a basic neural network using Microsoft Excel.

Neural Network Basics

A neural network is a machine learning model inspired by the structure and function of the human brain. It consists of layers of interconnected nodes or "neurons" that process and transmit information. A simple neural network typically consists of:

  1. Input Layer: receives input data
  2. Hidden Layer: performs complex calculations on the input data
  3. Output Layer: generates the final output

Setting up the Neural Network in Excel

To build a simple neural network in Excel, we'll use the following steps:

Prerequisites

  • Excel for Microsoft 365 (or Excel 2021/2024)
  • Note: Google Sheets and older Excels (2019) lack the dynamic array engine required for this "new" method.

2. The Architecture

To solve this in Excel, we need three layers: Input Layer : receives input data Hidden Layer

  1. Input Layer: Two cells representing our inputs ($x_1$ and $x_2$).
  2. Hidden Layer: Two neurons that process the inputs using weights and biases. This layer allows the model to solve non-linear problems like XOR.
  3. Output Layer: A single neuron that gives the final prediction (0 or 1).

Gradient for W2

=MMULT(TRANSPOSE(HiddenActivation), delta_output) / ROWS(InputData)

Then adjust weights manually:

New W2 = W2 - learning_rate * gradient_W2

You can implement this with Excel formulas if you fix ranges, but Solver is far easier for beginners.


9. Example Formula in a Cell (for transparency)

After training, a user could see the forward pass using only native functions (no magic):

// Forward pass of a single layer in a cell
= MAP(neuron_weights, LAMBDA(w, SIGMOID(SUMPRODUCT(w, prev_activations) + bias)))

Overview

We will build a 3-layer neural network (Input → Hidden → Output) to solve a simple logic problem: XOR (exclusive OR). XOR is the classic "non-linear" problem that first demonstrated the need for hidden layers.

Truth Table: | Input A | Input B | Output | |---------|---------|--------| | 0 | 0 | 0 | | 0 | 1 | 1 | | 1 | 0 | 1 | | 1 | 1 | 0 |

What you'll learn:

  • Forward propagation using matrix multiplication (MMULT, TRANSPOSE)
  • Activation functions (Sigmoid)
  • Backpropagation manually (optional advanced section)
  • Training by adjusting weights

Method B: Use Excel Solver (easy optimization)

  1. Go to Data → Solver.
  2. Set Objective: Loss → Min.
  3. By Changing Variables: Select all weights & biases (W1, W2, b1, b2).
  4. Add constraints (optional): none for XOR.
  5. Choose GRG Nonlinear (because neural nets are nonlinear).
  6. Click Solve.

After 100–200 iterations, loss should drop below 0.01.


Error at hidden layer

delta_hidden = MMULT(delta_output, TRANSPOSE(W2)) * HiddenActivation * (1 - HiddenActivation)

1. High-Level Vision

Allow users to design, train, and inference a fully connected feedforward neural network using only native Excel formulas and a task pane—without writing Python or VBA. The feature would handle backpropagation, activation functions, and gradient descent entirely within the spreadsheet grid or a dedicated calculation engine.