Forum Discussion
TheBigFrench
3 years agoRegular Visitor
Change decimal separator
Hi, I am trying to change the decimal separator of a number, without changing my windows local format, as it is for one table of my report only. Why ? : because I need to export ONE specific table ...
Padycosmos
3 years agoSolution Sage
Did you try using Locale in the Type in Power Query?
TheBigFrench
3 years agoRegular Visitor
Hi Padycosmos,
Yes I tried that, and it is not working.
I also tried by adding a column, and formating with a M formula (but it is not very clean !):
if MYCOLUMN<0 then Text.Replace(Number.ToText(MYCOLUMN*-1,"0.00"), ",", ".") else "0.00"
So, it give me the right visual and export result, but as a text, I can't avec the SUM off all the lines.