MissingField.Error (0) is an enumeration that specifies the expected action for missing values in a row that contains columns less than expected. It is a member of the MissingField.Type and represents an optional parameter in record and table functions indicating that missing fields should result in an error. (This is the default parameter value.)
Examples
Let’s walk through an easy-to-understand scenario with the MissingField.Error enumeration in the Power Query M Language. Consider this dataset.
You’re deciding which columns are useful and Table.SelectColumns lets you handpick the columns you need.
However, be careful! If you request a column that doesn’t exist, Power Query will flag it immediately and throws an error.
The default behavior of Power Query is to use the MissingField.Error enumeration. You can also explicitly provide it by writing it in the optional argument.
= Table.SelectColumns( Source, { "Name", "Year" }, MissingField.Error )
In this instance, we’re selecting “Name” and “Year” from the source table. If these columns aren’t there, Power Query will raise an error, stopping you from building on a faulty foundation. It’s a useful safeguard, ensuring the integrity of your data processing.
Related enumerations
Other related enumerations are:
Applies to
Here’s a list of functions that work with MissingField.Type:
- Record.RemoveFields
- Record.RenameFields
- Record.ReorderFields
- Record.SelectFields
- Record.TransformFields
- Table.FromRecords
- Table.RemoveColumns
- Table.RenameColumns
- Table.ReorderColumns
- Table.SelectColumns
- Table.TransformColumns
2023-2024 © BI Gorilla. All rights are reserved. Information from Microsoft docs is property of Microsoft Corp. | Privacy Policy