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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
amaleranda
Post Patron
Post Patron

Fromat of thousand seperator when concatenating with text

Hi DAX Gurus, 

 

I have a simple thing that I cannot achieve. I have created below measure  

 

Tonns =

VAR St =

CALCULATE(

SUM(Summary[ActualTonnes])

)

RETURN

IF(

ISBLANK(St),

"Failed",

FORMAT(ROUND(St,0) & "t", "#,0")

)

 

 

At the moment the output is like 25432t. My desiered output is 25,432t. The number with a thousand seperator.

 

Your help is highly appriciated.

 

Thanks in advance

1 ACCEPTED SOLUTION
MFelix
Super User
Super User

Hi @amaleranda,

You need to take the t from outside the format or placed with the ".

Something like this

Option1
FORMAT(ROUND(St,0) , "#,0 t")

Option2
FORMAT(ROUND(St,0), "#,0") & "t"

Regards,
MFelix


Regards

Miguel Félix


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

Proud to be a Super User!

Check out my blog: Power BI em Português



View solution in original post

2 REPLIES 2
MFelix
Super User
Super User

Hi @amaleranda,

You need to take the t from outside the format or placed with the ".

Something like this

Option1
FORMAT(ROUND(St,0) , "#,0 t")

Option2
FORMAT(ROUND(St,0), "#,0") & "t"

Regards,
MFelix


Regards

Miguel Félix


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

Proud to be a Super User!

Check out my blog: Power BI em Português



Works magic 🙂 thanks a lot

Helpful resources

Announcements
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.