Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
Shubham_rai955
Responsive Resident
Responsive Resident

Error while refreshing dataflow gen2

Facing this issue while refreshing the dataflow, Implemented incremental refresh, and not doing any transformaition using M query in any table. Please guide me how to resolve this.

Shubham_rai955_0-1758874797607.png

 

1 ACCEPTED SOLUTION
AntoineW
Solution Sage
Solution Sage

Hello @Shubham_rai955,

 

 Why this happens

Even though you mentioned no transformations in M, the incremental refresh policy still applies filters and type conversions. If any column expected as Number contains a Text value (or vice versa), Power Query throws this error.


 How to fix it

  1. Check column data types in the source

    • Ensure that the column used for incremental refresh (usually a date or numeric key) and any numeric columns are consistently typed.
    • If the source has mixed types (e.g., numbers stored as text), clean them before refresh.
  2. Add explicit type conversion in Power Query

    • In the Dataflow Gen2 editor, select the problematic column → set Data Type to Text or Number explicitly.
    • Or use try ... otherwise in M to handle invalid values
  3. Validate incremental refresh filters

    • If the policy applies on a column that isn’t strictly numeric or date, adjust it.
  4. Preview the query in the editor

    • Check for rows with unexpected values (e.g., text in numeric columns).

 

You can also Re-run a full refresh once

  • Disable incremental refresh temporarily.

  • Run a full refresh to confirm if the issue is only with incremental partitions.

  • If full refresh succeeds, re-enable incremental refresh.

 

Hope it can help you ! 

Best regards,

Antoine

View solution in original post

1 REPLY 1
AntoineW
Solution Sage
Solution Sage

Hello @Shubham_rai955,

 

 Why this happens

Even though you mentioned no transformations in M, the incremental refresh policy still applies filters and type conversions. If any column expected as Number contains a Text value (or vice versa), Power Query throws this error.


 How to fix it

  1. Check column data types in the source

    • Ensure that the column used for incremental refresh (usually a date or numeric key) and any numeric columns are consistently typed.
    • If the source has mixed types (e.g., numbers stored as text), clean them before refresh.
  2. Add explicit type conversion in Power Query

    • In the Dataflow Gen2 editor, select the problematic column → set Data Type to Text or Number explicitly.
    • Or use try ... otherwise in M to handle invalid values
  3. Validate incremental refresh filters

    • If the policy applies on a column that isn’t strictly numeric or date, adjust it.
  4. Preview the query in the editor

    • Check for rows with unexpected values (e.g., text in numeric columns).

 

You can also Re-run a full refresh once

  • Disable incremental refresh temporarily.

  • Run a full refresh to confirm if the issue is only with incremental partitions.

  • If full refresh succeeds, re-enable incremental refresh.

 

Hope it can help you ! 

Best regards,

Antoine

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Fabric Update Carousel

Fabric Monthly Update - September 2025

Check out the September 2025 Fabric update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors