Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hello,
Can any one help me to have thousand separator in this dax formula please ?
I want to add separator to the second card like first one.
Thank you 🙂
Solved! Go to Solution.
@FZOU , Try like
"Total " & format(sum('Total Resource'[resources]), "#,###") & " K"
or
"Total " & format(sum('Total Resource'[resources])/1000, "#,###") & " K"
Refer the below portion of the blog for formats
https://docs.microsoft.com/en-us/power-bi/create-reports/desktop-custom-format-strings
@FZOU , Try like
"Total " & format(sum('Total Resource'[resources]), "#,###") & " K"
or
"Total " & format(sum('Total Resource'[resources])/1000, "#,###") & " K"
Refer the below portion of the blog for formats
https://docs.microsoft.com/en-us/power-bi/create-reports/desktop-custom-format-strings