Forum Discussion
Anonymous
6 years agoNot applicable
DAX equation for thousand separator
Hi everyone, have a problem with the resulting format of a number. Have the following measure / DAX equation tested cases =
var txt = "number of cases: "
var nrCases= sum(table[column])
return...
amitchandak
Super User
6 years agoTry
format(CONCATENATE(txt; CONCATENATE(nrCase; " €")),"##.###")