Medium severitydata flow
Power BI Refresh Error:
DF-Executor-UserError
What does this error mean?
A data flow transformation failed due to a user-configuration error — an invalid expression, missing column reference, unsupported function argument, or incompatible data type in the transformation logic. DF-Executor-UserError is a wrapper code; the inner error message identifies the specific transformation and the root cause.
Common causes
- 1A Derived Column or filter expression references a column that no longer exists in the incoming stream — the source schema changed and the expression was not updated
- 2A cast or conversion expression receives a value that cannot be converted — for example, toInteger() called on a column that contains non-numeric strings
- 3A function is called with an incorrect argument type or an unsupported argument count — ADF expression function signatures are strict
- 4A sink column mapping references a column name that does not exist in the incoming data stream after recent transformation changes
How to fix it
- 1Read the full error message in the ADF activity run output — DF-Executor-UserError is a wrapper; the inner message names the specific transformation, column, or expression that failed.
- 2Open the data flow in ADF Studio and go to transformation named in the error message — inspect the expression or configuration that references the failing column.
- 3Enable Debug mode and use 'Data preview' on the failing transformation step to reproduce the error interactively with live data and see the exact row and value that caused it.
- 4If the error references a column that no longer exists in the source, refresh the source schema by clicking 'Import projection' in the Source transformation settings.
- 5Check data type mismatches — if a Derived Column or Cast expression receives a value that cannot be converted (e.g., a non-numeric string passed to toInteger()), add an iif(isNan(value), null, toInteger(value)) guard.
Frequently asked questions
Official documentation: https://learn.microsoft.com/en-us/azure/data-factory/data-flow-troubleshoot-guide