Extract Excel worksheets

Extract one or more worksheets from an Excel workbook into separate files.

Extract Excel worksheets pulls specific sheets out of a multi-sheet Excel workbook so downstream transforms can process them independently. You choose which sheets to extract by name, or extract all sheets in the workbook.

Availability: GA

What it does

  • Input: one or more files (Excel workbooks).
  • Output: one file per extracted worksheet.
  • The transform reads the workbook's sheet structure and produces a separate output for each sheet you request.

When to use it

  • A vendor sends a single workbook with multiple sheets, but you only need one or two of them.
  • You need to process each sheet through a different downstream path (for example, different validation rules per sheet).
  • Workbooks sometimes include extra sheets you want to ignore, such as instructions or hidden helper tabs.

How to configure it

In the MFF builder, add an Extract Excel worksheets node after the node that produces the Excel file.

Settings

SettingDescriptionDefault
Sheet namesThe specific worksheet names to extract. Ignored if Extract all sheets is enabled.Empty list
Extract all sheetsWhen enabled, every worksheet in the workbook is extracted, ignoring the sheet names list.Off
Full date formatWhen enabled, date values are output using a full, unambiguous date format rather than the workbook's display format.Off
Skip missing sheetsWhen enabled, sheet names that don't exist in the workbook are skipped instead of causing an error.Off
Include hidden sheetsWhen enabled, worksheets hidden in the workbook are still eligible for extraction.Off

Example

Input

An Excel workbook with sheets named Summary, January, February, and March (hidden).

Output

With Sheet names set to January, February and Include hidden sheets off, two files are produced: one for January and one for February.

Troubleshooting

"Sheet not found" error

  • Double-check the sheet name spelling and casing.
  • Enable Skip missing sheets if some workbooks in your feed may not include every sheet.

Hidden sheet is not extracted

  • Enable Include hidden sheets.

Dates look wrong in the output

  • Enable Full date format to standardize how dates are written in the output.

See also


Did this page help you?