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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

Table.ReplaceValue() not removing currency symbol in Dataflow breaking type conversion

In a Dataflow, I have a table containing the [Value] column, which looks like this: 

 

Value
24.572,02 €
4.501,02 €
242,09 €


I tried using 

Table.ReplaceValue(#"Added Channel", " €", "", Replacer.ReplaceValue, {"Value"})
 
But it doesn't replace the symbol, which then breaks the following step which is a type conversion to decimal point. 
 
Any ideas on why this might be happening?
2 REPLIES 2
BA_Pete
Super User
Super User

Hi @Anonymous ,

 

Have you tried changing Replacer.ReplaceValue to Replacer.ReplaceText and also changing the replace to value from "" to null?

 

Pete



Now accepting Kudos! If my post helped you, why not give it a thumbs-up?

Proud to be a Datanaut!




adudani
Super User
Super User

HI @Anonymous 
I think the engine is implicitly converting the data type if you are replacing the currency sign with blank/" ", because the whole column would then be filled with float/decimal type numbers.

reference article:  Power Query M type system - PowerQuery M | Microsoft Learn

adudani_0-1674143610389.png

 

 

instead of replacing, you could even split column by delimeter if required instead for other purposes.

 

Appreciate a thumbs up if this is helpful.

 

 

Did I answer your question? Mark my post as a solution, this will help others!
If my response(s) assisted you in any way, don't forget to drop me a Kudos 🙂
Kind Regards,
Avinash

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI 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 Kudoed Authors