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

Try your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now

Reply
Anonymous
Not applicable

Concatenate Measure and Text

Hello,

 

Could you please answer the following:

I was trying to create a calculation showing SUM(Montant Facturable) and the Currency, and the reason why I'm using this method not the default Number Formatting is that Gaia is a Number and Montant is Currency; so when I select Montant, I would like to see 2 decimals and Euro currency, 

 

Thank you, 

 

mesure.PNG

dynamic title..PNG

4 ACCEPTED SOLUTIONS
Nathaniel_C
Community Champion
Community Champion

Hi @Anonymous ,

Not sure if I understand exactly what you are asking, however when you create a measure you will have control over the format by going to the Modeling tab and selecting the Format.
Let me know if you have any questions.

If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos are nice too.
Nathaniel
Euro.PNG

Euro1.PNG

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

amitchandak
Super User
Super User

You can use

format ( <your formaul>,"###.##") & "<Currency symbol>"
Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

Anonymous
Not applicable

Reporting Period = IF(ISFILTERED(DATES[Reporting Period]),
CONCATENATE("Reporting Period: ",SELECTEDVALUE(DATES[Reporting Period])))

View solution in original post

You will need to define the formatting for both cases using IF clause, something like this:

 

CalculatedMeasure = IF(SELECTEDVALUE(Table1[FilterField]) == "Gaia", FORMAT(SUM(ARS211C[MONTANT FACTURABLE]), "Currency"), FORMAT(SUM(ARS211C[MONTANT FACTURABLE])), "General Number"))

 

More on formats:

https://docs.microsoft.com/en-us/dax/pre-defined-numeric-formats-for-the-format-function

View solution in original post

4 REPLIES 4
amitchandak
Super User
Super User

You can use

format ( <your formaul>,"###.##") & "<Currency symbol>"
Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Anonymous
Not applicable

Reporting Period = IF(ISFILTERED(DATES[Reporting Period]),
CONCATENATE("Reporting Period: ",SELECTEDVALUE(DATES[Reporting Period])))

You will need to define the formatting for both cases using IF clause, something like this:

 

CalculatedMeasure = IF(SELECTEDVALUE(Table1[FilterField]) == "Gaia", FORMAT(SUM(ARS211C[MONTANT FACTURABLE]), "Currency"), FORMAT(SUM(ARS211C[MONTANT FACTURABLE])), "General Number"))

 

More on formats:

https://docs.microsoft.com/en-us/dax/pre-defined-numeric-formats-for-the-format-function

Nathaniel_C
Community Champion
Community Champion

Hi @Anonymous ,

Not sure if I understand exactly what you are asking, however when you create a measure you will have control over the format by going to the Modeling tab and selecting the Format.
Let me know if you have any questions.

If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos are nice too.
Nathaniel
Euro.PNG

Euro1.PNG

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.