Public Schedule Face-to-Face & Online Instructor-Led Training - View dates & book

Instructor-led training - Excel Advanced - Formulas Functions training course London and UK wide

Excel Advanced Formulas and Functions Training CourseExcel Advanced Formulas and Functions Training Course

Face to face / Online public schedule & onsite training. Restaurant lunch included at STL venues.

Designed for Excel 365

Who is this course for?

Our Microsoft Excel Formulas course is suitable for those with an advanced working knowledge of Excel who want a greater understanding of more sophisticated formulas & functions within Excel.

You may also wish to consider one of our finance for non financial managers courses.

Prerequisites

Familiarity with creating functions including IFs, lookup functions, COUNTIFS, SUMIFS and nested functions, or our Excel Advanced part 1 course.

Benefits

At the end of this course, you will have a greater understanding of building complex formulas and functions. You will be able to create advanced nested functions to produce solutions and outcomes in your data sets.

You will find quicker ways to customise formulas by taking advantage of the built-in functions available in Excel. Save time by learning more sophisticated search & auditing techniques when working with data-heavy spreadsheets.

You will be introduced to the latest functions available in Excel 365, as well as less well-known but powerful existing functions.

In addition to learning a wide range of new formulas, you will also discover best-practice for setting up Excel files so they are flexible, appropriate, well-structured, and transparent.

Also available is the Excel Advanced - For Power Users course.

Course Syllabus

Building complex formulas

Nested functions best practice
Writing functions more efficiently using Formatted Tables
Get an understanding of how nested functions get executed

Statistical and forecasting functions

LARGE, SMALL, ROUND
CORREL & SLOPE
FORECAST.LINEAR
FORECAST.ETS

Date, Time & Text Functions

Smarter ways to calculate date & time
WORKDAY, DATEDIF, EDATE, WEEKNUM
Text functions:
UPPER, PROPER, FIND, MID, SEARCH, LEFT, RIGHT, LEN
TRIM excess space in cells
TEXTJOIN & CONCAT

Introduction to Array formulas

Using embedded Excel Array formulas
TREND, GROWTH, FREQUENCY
UNIQUE, SPILL, SORT (365)
SORTBY, FILTER (365)
Creating bespoke Array formulas

Advanced Lookup & Reference

XLOOKUP & XMATCH
ADDRESS
INDIRECT
OFFSET
CHOOSE

Auditing formulas

Tracing formula precedents, dependents, and errors
Correcting errors in formulas
Combining IF with VLOOKUP to suppress error messages
Using the IS information function
Error checking functions; ISERR, ISERROR, IFERROR

"What do I get on the day?"

Arguably, the most experienced and highest motivated trainers.

Face-to-face training

lunch

Training is held in our modern, comfortable, air-conditioned suites.

Modern-spec IT, fully networked with internet access

Lunch, breaks and timing

A hot lunch is provided at local restaurants near our venues:

  • Bloomsbury
  • Limehouse

Courses start at 9:30am.

Please aim to be with us for 9:15am.

Browse the sample menus and view joining information (how to get to our venues).

Refreshments

Available throughout the day:

  • Hot beverages
  • Clean, filtered water
  • Biscuits

Online training

online training (virtual)

Regular breaks throughout the day.

Learning tools

in-course handbook

In-course handbook

Contains unit objectives, exercises and space to write notes

Reference material

Available online. 100+ pages with step-by-step instructions

24 months access to Microsoft trainers

Your questions answered on our support forum.

What to expect when training

Training Formats & Services

  • On a public schedule at one of our
    London training venues.
  • On-site at your company office UK wide
  • Near-site, at a location close to you
  • Tailored courses to your requirements
  • Productivity Training Programs
  • Consultancy
  • Bespoke one-to-one
  • Rollout
  • TNA
  • Upgrade
  • Case studies

Atrium Underwriters Ltd

gravatar

Harry Lewis,
Underwriting Admin Assistant

Fantastic trainer, so enthusiastic and answered all queries clearly and everything was well explained. Thoroughly enjoyed the course and found it more than useful. 10/10.

Ulster University

gravatar

Stephen Keery,
People Development Partner

Jens his this down to an exact art.

Henry Schein Services GmbH

gravatar

Udo Joerges,
Manager Transportation And Customs Affairs Europe

3rd MS Excel Course, 3 different trainers & whilst having all their individual styles, all have been very good.

More testimonials

Public schedule dates

Next date Location Price
Thu 14 MayBloomsbury £311
Thu 21 MayOnline£309
Mon 13 JulOnline£291
Thu 13 AugBloomsbury £281
Thu 3 SepOnline£272
Mon 26 OctOnline£230

And 10 more dates...

Loading...

Loading content...

TrustPilot

star star star star star Excellent

Resources

Blog

Tutorials and discussions on MS Office

Hints & Tips

MS Office tips to save you time

Cheat sheets

MS Office shortcut keys for all versions

Infographics

Handy info on industry trends

Subscribe

Latest news & offers

Promotions

Latest Feedback

  • 98.50% customer recommendation
  • 99.23% training objectives met
  • 232,986 delegates trained
  • 14,706 organisations trained

Latest X / Tweet

  • Our Engaging #NegotiationSkills course is helping professionals handle complex conversations with confidence ✅ Big shout‑out to Hazel for delivering high‑impact training. Support continues via our 2‑year forum 📈 #feedback #ProfessionalDpic.x.com/zwSaDgtLun/zwSaDgtLun
Loading...

Loading content...

Free manuals

We are providing a range of our course manuals free of charge.

Why not share this resource with your friends and colleagues?

Training manual sample

Below are some extracts from our Excel training manuals.

Best Practices for Nested Functions

When working with nested functions in MS Excel, it’s important to follow best practices to ensure your formulas are efficient, readable, and maintainable. Here are some tips for using nested functions effectively:

Limit the Nesting Levels: Try to keep the nesting to as few levels as possible.

Use Alternative Functions: Consider using functions like IFS, XLOOKUP, CHOOSE, or SWITCH.

Start Simple: Begin with the most basic part of your formula and build outwards.

Parentheses Matching: Make sure every opening parenthesis has a corresponding closing parenthesis.

Test Your Formulas: Always test your formulas with different inputs.

Readability: Structure your formulas in a way that they are easy to read and understand.

Avoid Repetition: Use helper columns if repeating calculations.

Document Your Work: Document your logic for future reference.

In MS Excel, nested functions are executed from the inside out.

Statistical and Forecasting Tools

LARGE(array, k): Returns the k-th largest value.

SMALL(array, k): Returns the k-th smallest value.

ROUND(number, num_digits): Rounds a number.

CORREL(array1, array2): Calculates the correlation coefficient.

SLOPE(known_y’s, known_x’s): Returns slope of regression line.

FORECAST.LINEAR: Predicts a future value using linear regression.

FORECAST.ETS: Predicts values using exponential smoothing.

Date, Time & Text Functions

WORKDAY: Returns a date before/after workdays.

DATEDIF: Calculates date differences.

EDATE: Returns a date a set number of months from start.

WEEKNUM: Returns week number.

UPPER, PROPER: Adjust text capitalisation.

FIND & SEARCH: Find substring positions.

MID, LEFT, RIGHT: Extract text.

LEN: Count characters.

TRIM: Remove extra spaces.

TEXTJOIN, CONCAT: Join text items.

Array Formulas Overview

TREND: Calculates linear trend line.

GROWTH: Predicts exponential growth.

FREQUENCY: Calculates frequency distribution.

Array formulas allow multiple calculations on arrays and support dynamic spill behaviour.

Dynamic Array Tools

UNIQUE: Returns unique values.

SPILL: Automatic array output behaviour.

SORT and SORTBY: Sort data dynamically.

FILTER: Filters data based on criteria.

Dynamic arrays reduce need for older array formulas.

Advanced Lookup & Reference

XLOOKUP: Searches range/array and returns matching value.

XMATCH: Returns position of matching value.

ADDRESS: Returns cell reference as text.

INDIRECT: Returns reference specified by text.

OFFSET: Returns reference offset from given cell.

CHOOSE: Returns value from list by index.

Auditing Excel Formulas

Trace Precedents: Shows cells supplying data.

Trace Dependents: Shows cells depending on selected cell.

Show Formulas: Displays formulas instead of results.

Error Checking: Helps find and correct formula errors.

Evaluate Formula: Step through calculations.

Remove Arrows: Clears precedent/dependent arrows.

IS Information Functions

ISERR: Checks for errors except #N/A.

ISERROR: Checks for all error types.

IFERROR: Allows alternative output when error found.

Example: =IF(ISERROR(A1), 'Error in calculation', A1*2).

Connect with us:

0207 987 3777

Call for assistance

Request Callback

We will call you back

Server loaded in 0.61 secs.