Medium severitydata flow
Power BI Refresh Error:
DF-Executor-ParameterParseError
What does this error mean?
A data flow parameter received a value that could not be parsed into the expected type. The value passed by the pipeline to the data flow — via a literal, expression, or pipeline variable — does not match the parameter's declared type or contains characters that the expression parser cannot handle.
Common causes
- 1A data flow parameter typed as 'integer' or 'boolean' is passed a string value from the pipeline — for example, a trigger parameter that carries the text '2024-01-01' assigned to an integer parameter
- 2A dynamic expression used in the data flow parameter mapping (`@formatDateTime(...)`) evaluates to a format or value incompatible with the parameter's declared type
- 3A date/timestamp parameter receives a string in a format the data flow parser does not recognize — ADF data flow date parameters are strict about format strings
- 4A parameter was declared in the data flow definition but its type was recently changed, and the upstream pipeline's parameter mapping still passes a value of the old type
How to fix it
- 1In the pipeline editor, click the data flow activity, open the 'Parameters' tab, and review each data flow parameter assignment — the error message identifies which parameter value could not be parsed.
- 2Check that the parameter type matches the value being passed — for example, a data flow parameter typed as 'integer' will fail if the pipeline passes a string expression that contains non-numeric characters.
- 3If the parameter is populated from a pipeline variable or another activity's output, use ADF's 'Debug' with 'Override parameters' to inspect the resolved value at runtime.
- 4For date/timestamp parameters, ensure the format matches what the data flow expects — ADF date parameters are strict about format strings (e.g., 'yyyy-MM-dd').
- 5If the parameter includes a dynamic expression (e.g., @formatDateTime(.)), validate the expression in the ADF expression builder before running the pipeline to catch format or escaping errors.
Frequently asked questions
Official documentation: https://learn.microsoft.com/en-us/azure/data-factory/data-flow-troubleshoot-guide