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

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

Reply
Raph
Helper III
Helper III

European number format

Hello 

 

I have this measure in a card : 

 

Text invoice = "Please send your invoice of " & FORMAT([Total royalties], "###,###.00") & " € to royalties@mycompany.com".
This measure displays the following format :  1,465.78 €...  but I am looking for getting the european format : 1.465,78 €
 
I have already the regional parameters settled on French  (global and active file).
 
Any idea?
 
Thank you!
Raphaël
1 ACCEPTED SOLUTION
puneetvijwani
Resolver IV
Resolver IV

@Raph 
Try below workaround measure and let me know if that works

Text invoice =
VAR USFormatted = FORMAT([Total royalties], "###,###.00")
VAR Step1 = SUBSTITUTE(USFormatted, ",", "|") -- Replace ',' with a temporary character ('|')
VAR Step2 = SUBSTITUTE(Step1, ".", ",") -- Replace '.' with ','
VAR EuroFormatted = SUBSTITUTE(Step2, "|", ".") -- Replace the temporary character ('|') with '.'
RETURN
    "Please send your invoice of " & EuroFormatted & " € to royalties@mycompany.com"

-------------------------------------------------------------------------------------------------------------------------------

 

Good day, amigo! Have I provided the solution? If so, please let me know by adding the lovely, sweet "solution" tag to my post. And hey, if you're feeling very kind, give me a Kudos; after all, who doesn't enjoy a little digital gratitude?

-------------------------------------------------------------------------------------------------------------------------------

View solution in original post

2 REPLIES 2
puneetvijwani
Resolver IV
Resolver IV

@Raph 
Try below workaround measure and let me know if that works

Text invoice =
VAR USFormatted = FORMAT([Total royalties], "###,###.00")
VAR Step1 = SUBSTITUTE(USFormatted, ",", "|") -- Replace ',' with a temporary character ('|')
VAR Step2 = SUBSTITUTE(Step1, ".", ",") -- Replace '.' with ','
VAR EuroFormatted = SUBSTITUTE(Step2, "|", ".") -- Replace the temporary character ('|') with '.'
RETURN
    "Please send your invoice of " & EuroFormatted & " € to royalties@mycompany.com"

-------------------------------------------------------------------------------------------------------------------------------

 

Good day, amigo! Have I provided the solution? If so, please let me know by adding the lovely, sweet "solution" tag to my post. And hey, if you're feeling very kind, give me a Kudos; after all, who doesn't enjoy a little digital gratitude?

-------------------------------------------------------------------------------------------------------------------------------

Thank you very much, @puneetvijwani  !

It's smart and it works.

Raphaël

 

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 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.